Hai am using telerik wpf grid
in grid selection change event am getting the selected row values.
the problem is the values are as object.
object myData = radGridView.SelectedItem;
the object myData contains the row values. but i don know how to get values from the myData object
If you are assigning(or Binding) Collection of MyType to ItemsSource then you will get SelectedItem as object of MyType. All you need to do is
and then you can read the values form myData object.
Hope it helps!!