Hello,
When I click to select an XamDataGrid cell, it fires an event. How could I fire the same event again, when I click the selected cell another time?
Thanks.
To the best of my knowledge this is not possible. The event will fire when IsChanged property of the cell changes. This is the same as the row/cell activation and selection events. You could handle the PreviewMouseLeftButtonDown event and find the cell you have clicked on through the visual tree.
Thanks for your reply.
How could I find the cell I have clicked on through the visual tree? Are there any examples?