Selection in dataGrid nobody can help me??

  • Thread starter Thread starter Michael
  • Start date Start date
M

Michael

is it possible to mark a specific cell as "selected"
or "set the focus on it"?
This mark is nesessary to give the user a preselction of
the values shown in grid (a calendar).

my cells will be created with the following code:
currentCell = new DataGridCell(myRow, myColumn);




thanks in Advance
..
 
Try the following:
this.datagrid1.CurrentCell = currentCell;

if your datagrid is named datagrid1, otherwise replace by the name you
selected
 
Back
Top