ContextMenu 构造函数

定义

初始化 ContextMenu 类的新实例。

重载

ContextMenu()

初始化没有任何指定菜单项的 ContextMenu 类的一个新实例。

ContextMenu(MenuItem[])

使用一组指定的 ContextMenu 对象初始化 MenuItem 类的一个新实例。

ContextMenu()

初始化没有任何指定菜单项的 ContextMenu 类的一个新实例。

public:
 ContextMenu();
public ContextMenu ();
Public Sub New ()

注解

使用此版本的构造函数后,可以使用 类的 Menu.MenuItemCollection 方法将菜单项添加到 。ContextMenuAdd 可以通过 属性访问 Menu.MenuItemCollectionMenuItems

另请参阅

适用于

ContextMenu(MenuItem[])

使用一组指定的 ContextMenu 对象初始化 MenuItem 类的一个新实例。

public:
 ContextMenu(cli::array <System::Windows::Forms::MenuItem ^> ^ menuItems);
public ContextMenu (System.Windows.Forms.MenuItem[] menuItems);
new System.Windows.Forms.ContextMenu : System.Windows.Forms.MenuItem[] -> System.Windows.Forms.ContextMenu
Public Sub New (menuItems As MenuItem())

参数

menuItems
MenuItem[]

MenuItem 对象的数组,这些对象表示要添加到快捷菜单的菜单项。

示例

下面的代码示例演示如何构造快捷菜单并使用 Show 方法。 若要运行该示例,请将以下代码粘贴到包含名为 Button1 的按钮的窗体中。 确保所有事件都与其事件处理方法相关联。

// Displays the shortcut menu, offsetting its location 
// from the upper-left corner of Button1 by 20 pixels in each direction. 
void Button1_Click( System::Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
   
   //Declare the menu items and the shortcut menu.
   array<MenuItem^>^menuItems = {gcnew MenuItem( "Some Button Info" ),gcnew MenuItem( "Some Other Button Info" ),gcnew MenuItem( "Exit" )};
   System::Windows::Forms::ContextMenu^ buttonMenu = gcnew System::Windows::Forms::ContextMenu( menuItems );
   buttonMenu->Show( Button1, System::Drawing::Point( 20, 20 ) );
}

// Displays the shortcut menu, offsetting its location 
// from the upper-left corner of Button1 by 20 pixels in each direction. 
private void Button1_Click(System.Object sender, System.EventArgs e)
{

    //Declare the menu items and the shortcut menu.
    MenuItem[] menuItems = new MenuItem[]{new MenuItem("Some Button Info"), 
        new MenuItem("Some Other Button Info"), new MenuItem("Exit")};

    ContextMenu buttonMenu = new ContextMenu(menuItems);
    buttonMenu.Show(Button1, new System.Drawing.Point(20, 20));
}

' Displays the shortcut menu, offsetting its location 
' from the upper-left corner of Button1 by 20 pixels in each direction. 
Private Sub Button1_Click(ByVal sender As System.Object, _
    ByVal e As System.EventArgs) Handles Button1.Click

    'Declare the menu items and the shortcut menu.
    Dim menuItems() As MenuItem = New MenuItem() _
        {New MenuItem("Some Button Info"), _
        New MenuItem("Some Other Button Info"), _
        New MenuItem("Exit")}

    Dim buttonMenu As New ContextMenu(menuItems)
    buttonMenu.Show(Button1, New System.Drawing.Point(20, 20))
End Sub

注解

可以使用此版本的构造函数创建在 ContextMenu 创建时指定其菜单项的 。 使用此版本的构造函数后,可以使用 类的 Menu.MenuItemCollection 方法将其他菜单项添加到 。ContextMenuAdd 可以通过 属性访问 Menu.MenuItemCollectionMenuItems

另请参阅

适用于