Menu.MenuItemCollection.IndexOf(MenuItem) Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Načte index konkrétní položky v kolekci.
public:
int IndexOf(System::Windows::Forms::MenuItem ^ value);
public int IndexOf (System.Windows.Forms.MenuItem value);
member this.IndexOf : System.Windows.Forms.MenuItem -> int
Public Function IndexOf (value As MenuItem) As Integer
Parametry
Návraty
Index od nuly položky nalezené v kolekci; jinak hodnota -1.
Příklady
Následující příklad kódu ukazuje, jak vytvořit hlavní nabídku , myMainMenu
se dvěma MenuItem objekty a File
Edit
. Nabídka File
má tři podnabídky: New
, Open
a Exit
. Pomocí IndexOf metody načtete index Exit
položky v kolekci File
nabídek a pak zobrazíte její hodnotu v okně se zprávou. Tento příklad vyžaduje, abyste již vytvořili pojmenovanou FormForm1
.
public:
void InitializeMyMenu()
{
// Create the MainMenu Object^.
MainMenu^ myMainMenu = gcnew MainMenu;
// Create the MenuItem objects.
MenuItem^ fileMenu = gcnew MenuItem( "&File" );
MenuItem^ editMenu = gcnew MenuItem( "&Edit" );
MenuItem^ newFile = gcnew MenuItem( "&New" );
MenuItem^ openFile = gcnew MenuItem( "&Open" );
MenuItem^ exitProgram = gcnew MenuItem( "E&xit" );
// Add the MenuItem objects to myMainMenu.
myMainMenu->MenuItems->Add( fileMenu );
myMainMenu->MenuItems->Add( editMenu );
// Add three submenus to the File menu.
fileMenu->MenuItems->Add( newFile );
fileMenu->MenuItems->Add( openFile );
fileMenu->MenuItems->Add( exitProgram );
// Assign myMainMenu to the form.
Menu = myMainMenu;
// Retrieve the index of the Exit menu item.
String^ indexValue = fileMenu->MenuItems->IndexOf( exitProgram ).ToString();
// Display the result in a message box.
MessageBox::Show( "The index of the Exit menu item = "
+ indexValue, "MenuItem Information" );
}
public void InitializeMyMenu()
{
// Create the MainMenu object.
MainMenu myMainMenu = new MainMenu();
// Create the MenuItem objects.
MenuItem fileMenu = new MenuItem("&File");
MenuItem editMenu = new MenuItem("&Edit");
MenuItem newFile = new MenuItem("&New");
MenuItem openFile = new MenuItem("&Open");
MenuItem exitProgram = new MenuItem("E&xit");
// Add the MenuItem objects to myMainMenu.
myMainMenu.MenuItems.Add(fileMenu);
myMainMenu.MenuItems.Add(editMenu);
// Add three submenus to the File menu.
fileMenu.MenuItems.Add(newFile);
fileMenu.MenuItems.Add(openFile);
fileMenu.MenuItems.Add(exitProgram);
// Assign myMainMenu to the form.
Menu = myMainMenu;
// Retrieve the index of the Exit menu item.
string indexValue =
fileMenu.MenuItems.IndexOf(exitProgram).ToString();
// Display the result in a message box.
MessageBox.Show("The index of the Exit menu item = "
+ indexValue, "MenuItem Information");
}
Public Sub InitializeMyMenu()
' Create the MainMenu object.
Dim myMainMenu As New MainMenu()
' Create the MenuItem objects.
Dim fileMenu As New MenuItem("&File")
Dim editMenu As New MenuItem("&Edit")
Dim newFile As New MenuItem("&New")
Dim openFile As New MenuItem("&Open")
Dim exitProgram As New MenuItem("E&xit")
' Add the MenuItem objects to myMainMenu.
myMainMenu.MenuItems.Add(fileMenu)
myMainMenu.MenuItems.Add(editMenu)
' Add three submenus to the File menu.
fileMenu.MenuItems.Add(newFile)
fileMenu.MenuItems.Add(openFile)
fileMenu.MenuItems.Add(exitProgram)
' Assign myMainMenu to the form.
Menu = myMainMenu
' Retrieve the index of the Exit menu item.
Dim indexValue As String = fileMenu.MenuItems.IndexOf(exitProgram).ToString()
' Display the result in a message box.
MessageBox.Show("The index of the Exit menu item = " + indexValue, "MenuItem Information")
End Sub