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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top