Hi,
I would like to Bind the values of the Current SelectedRow in a xamDataGrid to a bunch of Labels. But I can't figure out how to do so.
Can you please send me an example how to do this?
Hello,
You could create binding like this:
"{Binding ElementName=xamDataGrid1, Path=ActiveRecord.Cells[0].Value}"
or
"{Binding ElementName=xamDataGrid1, Path=ActiveRecord.DataItem.Property1}"
"{Binding ElementName=xamDataGrid1, Path=SelectedItems.Records[0].Cells[0].Value}"