make currentCell selected

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

Michael

Hi,

is it possible to mark a specific cell as "selected"?

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

thanks for your answer
 
Do you mean "mark forever?" No, that's not possible. If you want to move
selection to a particular cell, assign to DataGrid.CurrentCell
 
I don't want want to mark the cell forever. I want to
move the selection or "set the focus" to a particular
cell.

I tried this:
myDataGrid[2,2] = myDataGrid.CurrentCell;

but unfortunatly it's not the desiered effect;

any ideas?


thanks Michael
 
Back
Top