Menu.MenuItems 属性

定义

获取一个值,通过该值指示与菜单关联的 MenuItem 对象的集合。

public:
 property System::Windows::Forms::Menu::MenuItemCollection ^ MenuItems { System::Windows::Forms::Menu::MenuItemCollection ^ get(); };
[System.ComponentModel.Browsable(false)]
public System.Windows.Forms.Menu.MenuItemCollection MenuItems { get; }
[<System.ComponentModel.Browsable(false)>]
member this.MenuItems : System.Windows.Forms.Menu.MenuItemCollection
Public ReadOnly Property MenuItems As Menu.MenuItemCollection

属性值

Menu.MenuItemCollection

表示存储在菜单中的 Menu.MenuItemCollection 对象列表的 MenuItem

属性

示例

下面的代码示例创建派生类的实例, MainMenu并将对象 MenuItem 添加到其对象集合 MenuItem 中。 此示例要求此示例中定义的方法位于窗体的类中,并由该窗体类中的方法调用。

private:
   void InitializeMyMainMenu()
   {
      // Create the MainMenu and the MenuItem to add.
      MainMenu^ mainMenu1 = gcnew MainMenu;
      MenuItem^ menuItem1 = gcnew MenuItem( "&File" );
      
      /* Use the MenuItems property to call the Add method
         to add the MenuItem to the MainMenu menu item collection. */
      mainMenu1->MenuItems->Add( menuItem1 );
      
      // Assign mainMenu1 to the form.
      this->Menu = mainMenu1;
   }
private void InitializeMyMainMenu()
{
   // Create the MainMenu and the MenuItem to add.
   MainMenu mainMenu1 = new MainMenu();
   MenuItem menuItem1 = new MenuItem("&File");
   
   /* Use the MenuItems property to call the Add method
      to add the MenuItem to the MainMenu menu item collection. */
   mainMenu1.MenuItems.Add (menuItem1);

   // Assign mainMenu1 to the form.
   this.Menu = mainMenu1;
}
Private Sub InitializeMyMainMenu()
    ' Create the MainMenu and the MenuItem to add.
    Dim mainMenu1 As New MainMenu()
    Dim menuItem1 As New MenuItem("&File")
       
    ' Use the MenuItems property to call the Add method
    ' to add the MenuItem to the MainMenu menu item collection. 
    mainMenu1.MenuItems.Add(menuItem1)
       
    ' Assign mainMenu1 to the form.
    Me.Menu = mainMenu1
End Sub

注解

可以使用此属性获取对当前存储在菜单中的菜单项列表的引用。 对于 MainMenuContextMenu 对象,该 MenuItems 属性包含控件中的整个菜单结构。 MenuItem对于类,该MenuItems属性包含与该MenuItem类关联的子菜单项的列表。 通过对此属性 () 提供的菜单项的菜单项集合的引用,可以添加或删除菜单项、确定菜单项总数以及清除集合中的菜单项列表。 有关维护菜单菜单项集合的详细信息,请参阅 System.Windows.Forms.Menu.MenuItemCollection 文档。

适用于

另请参阅