Any recommendations for implementing a context menu for a given row in a DataGrid Simple enough to do this for the DataGrid as a whole, but I don't see how to "bind" the contextmenu to the row that the user clicks on. For "extra credit", I'd like to augment the default contextmenu that you get when you right-click on selected-text with my custom menu items.
Can anyone point me in the right direction

Context Menu for a row in a DataGrid
Jack0000
Anytime, and if you need sample code, let me know
willox2112
Thanks, that's exactly the direction I needed.
Cheers -
another_noob
Maybe you should listen to the CellClick event of the datagridview, check whether the cell click is RightButton click and inside your specieal row, if so, do specieal handling.
Another way is to listen to the contextmenu pop up event, when it is pop up on the special row (find the row by the DataGridView.HitTest method)