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 オブジェクトのリストを表す 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

注釈

このプロパティを使用すると、メニューに現在格納されているメニュー項目の一覧への参照を取得できます。 オブジェクトと ContextMenu オブジェクトのMenuItems場合MainMenu、 プロパティにはコントロール内のメニュー構造全体が含まれます。 クラスの MenuItem 場合、 MenuItems プロパティには、 に関連付けられているサブメニュー項目の一覧が MenuItem含まれます。 (このプロパティによって提供される) メニューのメニュー項目のコレクションへの参照を使用すると、メニュー項目の追加と削除、メニュー項目の合計数の決定、およびコレクションからのメニュー項目の一覧のクリアを行うことができます。 メニューのメニュー項目コレクションの管理の詳細については、ドキュメントを System.Windows.Forms.Menu.MenuItemCollection 参照してください。

適用対象

こちらもご覧ください