DataGridCell Template with WPF Toolkit Datagrid
WPF
1
Posts
1
Posters
0
Views
1
Watching
-
Hello All, How can I use the DataGridCell Template with WPF Toolkit Datagrid. I like to create a Cell Template and like to apply that template for all cells. For example: <DataTemplate> <StackPanel> <Button Content="AA" /> <Textbox Text={Binding .} /> </StackPanel> </DataTemplate> #2. Can I use "." in Binding? As the column will be generated dynamically based on the Data Source, I don't know the column name. So, I want to set whatever column that I got to the textbox. Thanks in advance. Thanks and Regards, Michael Sync ( Blog: http://michaelsync.net)