2
votes
2answers
125 views

DataGrid that uses binding to create table with comboboxes

I have a DataGrid that should have a text column for the first column, and then the succeeding columns should be combo boxes with a different set of items for each column. The problem is that the ...
0
votes
0answers
48 views

cannot append a row to datagrid WPF

I scratched my head a lot and worked also, but still not able to add a row to a datagrid. I mean i cannot append, when ever i am adding a new row the previous data is going away and only tht one row ...
0
votes
0answers
234 views

DataGrid horizontal scrollbar disabled

I have WPF DataGrid with ItemsSource bound to ICollectionView implementation. Collection is full of items before DataGrid is even instantiated. All columns within DataGrid are of ...
0
votes
1answer
50 views

How to highlight edited cell in a datagrid

How can I highlight a cell in DataGrid that has been edited? XAML solution through some style using triggers is preferable. But if not possible, then a code behind approach would be good enough. I am ...
0
votes
1answer
1k views

WPF DataGrid not appear in Toolbox?

I am working with Visual studio 2008. I want to work on WPF DataGrid control. I downloaded WPF toolkit and install it, and then added toolkit reference in my project, but it does not recognize ...
4
votes
1answer
2k views

How to select all the text when the edit textbox in a DataGridTemplateColumn receives focus?

I'm trying to get a DataGridTemplateColumn to behave identically to a TextColumn when the cell goes into edit mode (Press F2), the user can immediately start typing in the new value by default, ...