I am trying to create a specifc right-click context menu for each row of a GridView. Therefore, I need to find out the row or cell a user clicks.
I tried the standard events, but no luck so far:
-
CellClick
returns row and colum, but doesn’t detect right-clicks -
MouseUp
returns right-clicks, but no row or column
What would be the best approach to find out row, column or cell of a GridView when right-clicking?