Quantcast
Channel: Windows Forms General forum
Viewing all articles
Browse latest Browse all 12583

How to position ContextMenuStrip

$
0
0

I can't seem to figure out how to position my ContextMenuStrip below my dataGridViewCell. When I click the dataGridViewComboBoxCell I want my ContextMenuStrip to show right below the cell. Here's what I've done so far:

Collapse |Copy Code
class MyDropDownList : DataGridViewComboBoxCell
{
   ContextMenuStrip dropDownList; public MyDropDownList()
   {
       dropDownList = new ContextMenuStrip();
       dropDownList.Items.Add("Hello World");
       dropDownList.Items.Add("Goodbye");
       dropDownList.Items.Add("Random stuff...");
   } protectedoverridevoid OnMouseClick(DataGridViewCellMouseEventArgs e)
   {// ContextMenuStrip shows where the mouse// was clicked within the cell area...// I want the ContextMenuStrip to show // right below the cell and to be aligned // properly with the cell.
       dropDownList.Show(Cursor.Position.X, Cursor.Position.Y); // This wasn't even close!// dropDownList.Show(base.DataGridView.PointToScreen(e.Location));   }
}
 


So basically I want the ContextMenuStrip to is act is my
DropDownList for the dataGridViewComboBoxCell


dee allen



Viewing all articles
Browse latest Browse all 12583

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>