For Exemple , when I Clic on a Button , I Want get the focus on row = 3 and cell = 4 on my xamldatagrid
Thank you CAISSEODV
Hello Caisseodv,
For setting the focus you can set the ActiveCell property and return as a Cell object. E.g.:
DataRecord record = (DataRecord)XamDataGrid1.Records[3];XamDataGrid1.ActiveCell = record.Cells[4];
Thank you.
continue learning XamlDataGrid
Caisseodev