I got this part of code, where I open contextMenuStrip in respond to mouse right-click (over dataGridView table).
The problem is, that the FIRST TIME i right click - the menu doesn't pop up. On the second time it pops up, and since then everything is working well..
private void dataGridView1_MouseClick(object sender, MouseEventArgs e)
{
DataGridView.HitTestInfo info = dataGridView1.HitTest(e.X, e.Y); //get info
int currentMouseOverRow = dataGridView1.HitTest(e.X, e.Y).RowIndex;
if (e.Button == MouseButtons.Right) //MouseButton right: Open context menu strip.
{
dataGridView1.Rows[currentMouseOverRow].Selected = true; //Select the row
ContextMenuStrip Menu = new ContextMenuStrip();
ToolStripMenuItem MenuOpenPO = new ToolStripMenuItem("Delete it");
MenuOpenPO.Click += new EventHandler(MenuOpenPO_Click);
Menu.Items.AddRange(new ToolStripItem[] { MenuOpenPO });
dataGridView1.ContextMenuStrip = Menu; //Assign to dataGridView1
}
}
Any help ? :) I use visual studio 2012.
Problem : You have added
ContextMenu
to theDataGridView
afterRightClick
event. soContextMenu
willbe added to yourDataGridView
after the firstRightClick
hence user can see the attachedContextMenu
from the furtherRightClick
events.Solution : you need to add the
ContextMenu
before right clicking on theDataGridView
so that it will be appeared for eachRightClick
event.Note : if
ContextMenu
is assigned to any control , it willbe displayed onrightclick
by default, means you do not need to add it for eachRightClick
event on the control explicitly.Try This: in
Form Load
Event