vote up 0 vote down star

I'm using the WPF toolkit datagrid.

How can I get the values of the cells of the selected rows?

Thanks

flag

1 Answer

vote up 1 vote down check

In WPF rows represent objects in a list and columns are object's properties.

It depends on what DataGrid.ItemsSource is.If your ItemSource is an array of BindedClass you could get selected object by:

BindedClass bc = (BindedClass)dataGridControl.SelectedItem;
var prop1 = bc.Prop1;
var prop2 = bc.Prop2;
link|flag
Ok, I got it. The problem was that I retrieve the info from the DB using Linq, and I did it using anonymous types. But you gave me the clue to find my mistake explaining me how the datagrid works. Thanks! – Jonathan Oct 15 at 11:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.