如何显示Windows 7样式的上下文菜单?

时间:2011-02-20 05:32:23

标签: .net winforms windows-7 contextmenu aero

Context menus

在我的.NET应用程序中,上下文菜单看起来像左边的菜单。

如何在它们上应用Windows 7样式以使它们看起来像是正确的?

1 个答案:

答案 0 :(得分:8)

右键单击工具框,选择项目。勾选“ContextMenu”,Namespace = System.Windows.Forms和Directory = Global Assembly Cache。

此.NET 1.x组件与ContextMenuStrip不同,它使用本机Windows菜单。你会失去一些能力,我怀疑你在乎。您需要编写一行代码来分配菜单,设计器只允许您设置ContextMenuStrip属性。将该行添加到构造函数中,如:

    public Form1() {
        InitializeComponent();
        this.ContextMenu = contextMenu1;
    }