vote up 2 vote down star

Inside my control, I have:

ContextMenu = new ContextMenu();
ContextMenu.MenuItems.Add(new MenuItem("&Add Item", onAddSpeaker));
ContextMenu.MenuItems.Add(new MenuItem("&Edit Item", onEditSpeaker));
ContextMenu.MenuItems.Add(new MenuItem("&Delete Item", onDeleteSpeaker));
ContextMenu.MenuItems.Add( ??? );
ContextMenu.MenuItems.Add(new MenuItem("Cancel"));

What do I put to make a menu separator ?

flag

Adam, C# does not have menu's at all. This is a WinForms|WPF|ASP.NET question foremost. I have guessed WinForms. – Henk Holterman Aug 28 at 23:31
Yes WinForms. Sorry for the ambiguity. – Adam Pierce Aug 28 at 23:40

3 Answers

vote up 11 vote down check

I believe it's just a dash:

ContextMenu.MenuItems.Add("-");
link|flag
Great, thanks for the quick answer! – Adam Pierce Aug 28 at 23:29
This is one of many poorly documented items in Windows. I needed to do this a few months ago. I remembered that I could do it in Win32, but couldn't remember the syntax. I ended up pulling up some old VC++ 6 files to find it. By the way, I still occasionally refer to "The Petzold Book" for some things. Wow, I'm feeling old... – Brad Bruce Aug 29 at 1:27
vote up 2 vote down

use hyphen "-" as text

link|flag
vote up 1 vote down

Set the text property to a hyphen.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.