How to show a Context Menu when you right click a Menu Item in a DataGridView ? I would like to add delete in the menu so that the entire row can be deleted . Thanks in Advance
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
With reference to Miguel answer
|
|||
|
|
|
You'll need to create a context menu with a "delete row" option in the designer. Then assign the DGV (Data Grid View)'s ContextMenuStrip property to this context menu. Then double click on the delete row item, and add this code:
You'll also need to add a MouseUp event for the DGV that allows the current cell to change when you right click it:
|
||||
|
|
I know this question is quite old, but maybe someone will still have use for this. There is an Event for this,
|
|||
|
|