替代ContextMenuStrip

时间:2011-09-09 07:19:57

标签: c# winforms

我希望能够改变.NET中当前可用的ContextMenuStrip的样式,我总觉得它非常难看。

例如,这是框架中的一个:

enter image description here

我想在我的程序中使用这个系统风格的菜单:

enter image description here

有什么办法可以在托管应用中使用普通的上下文条带吗?

1 个答案:

答案 0 :(得分:2)

尝试使用旧的ContextMenu控件,例如

ContextMenu menu = new ContextMenu();
menu.MenuItems.Add("Hello");
menu.MenuItems.Add("-"); // yes, this makes a separator !!!
menu.MenuItems.Add("World");

图像:

enter image description here