1
vote
4answers
770 views
How do I add a ContextMenuStrip to a ToolStripButton?
I have a toolstrip containing, among other things, a ToolStripComboBox and a ToolStripButton. I want to add a ContextMenuStrip to both of them, but I don't have direct access to t …
0
votes
0answers
17 views
Can I set Properties directly in the Context Menu? C#
Following idea:
I have a Game Level editor, which should be as simple as possible (I don't want to program something too complex). But that does not mean that the tool should be un …
0
votes
2answers
154 views
Show ContextMenuStrip at location of StatusBar item
I want to show a ContextMenuStrip at the location of a ToolStripStatusLabel in a StatusStrip. Ordinary controls have PointToScreen / PointToClient / etc, but as ToolStripStatusLabe …
0
votes
0answers
41 views
How to show accelerators when context menu triggered from code
As I understand it, when the Windows "Hide underlined letters for keyboard navigation until I press the Alt key" checkbox is checked, when a context menu is shown via a right-click …
1
vote
1answer
35 views
Toolstripbutton text gets cut off in contextmenustrip
i am instantiating my own ToolStripButton and adding it to a contextmenustrip it pops up but the text gets cut off:
string[] layouts = new string[]{"Test 1", "test 2", "test 3"}
…
1
vote
2answers
82 views
how to show contextmenustrip when a button is clicked in the right position
i want to click on a button and have it show a contextmenustrip right below the button. it keeps showing up in the left hand side of the screen when i try pointtoacreen and top an …
1
vote
1answer
2k views
How to create ContextMenuStrip in C# which items are images?
I want to create context menu in C# which items are images of different heights and widths.
Main problem I don't know how to solve is how to set width and height for menu items an …
0
votes
3answers
90 views
winforms - contextMenuStrip - close on clicking away.
Hi All,
I have a DGV with a ContextMenuStrip.
The ContextMenuStrip's default behaviour is to auto-close - i.e. to close immediately on the user interacting with it. I've turned t …
0
votes
0answers
80 views
How do i access the originating control for a ContextMenuStrip in C#?
I have attached a ContextMenuStrip to a TabControl and set up a handler for OnMouseDown that does the following:
if (e.Button != MouseButtons.Right) {
return;
}
for (va …
0
votes
0answers
20 views
ContextMenuStrip
Hi,
I am adding a right click functionality on individual nodes of a treeView in my C# code.
The options like "Add", "Delete", "Rename" should pop up when the user right clicks in …
2
votes
5answers
494 views
Do not close ContextMenuStrip on selection of certain items
Is it possible to leave a ContextMenuStrip open after a selection/check of certain items?
I plan on using a simple ContextMenuStrip to set a filter (this way i could use the same …
0
votes
2answers
87 views
ContextMenuStrip Custom Layout
I'm trying to have a Windows Forms ContextMenuStrip control display a list of countries, about 200 total. Currently it displays them all vertically which creates for a long wait t …
0
votes
1answer
223 views
Show/Hide ContextMenuStrip outside the form
I'm creating a simple clipboard manager application. It monitors the content of a clipboard. When a change occurs (throu the win api message loop) it fires up a method to capture c …
0
votes
2answers
140 views
How do I stop items in a ContextMenuStrip from treating ampersands specially?
I have a ContextMenuStrip which displays items which can be named by the user; the user is allowed to give the items names containing ampersands. When the ContextMenuStrip is show …
0
votes
1answer
196 views
Remove .net ContextMenuStrip Padding
Hi,
When creating a ContextMenuStrip, there is a huge amount of padding around the contained controls.
For example:
Me.myMenu = New ContextMenuStrip
'unset all obvious pa …
