MainMenu::GetForm Method ()
.NET Framework (current version)
Gets the Form that contains this control.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
The following code example uses the GetForm method to determine if a MainMenu is currently parented to the form. If the call in the example code to GetForm does not return null, the code then clones the menu structure of the MainMenu using the CloneMenu method. The code then sets the RightToLeft property to true on the new copy of the MainMenu to create a MainMenu that can be used for languages that support right to left text. This example requires that you have a MainMenu created that is named mainMenu1.
void CloneMyMenu() { // Determine if mainMenu1 is currently hosted on the form. if ( mainMenu1->GetForm() != nullptr ) { // Create a copy of the MainMenu that is hosted on the form. MainMenu^ mainMenu2 = mainMenu1->CloneMenu(); // Set the RightToLeft property for mainMenu2. mainMenu2->RightToLeft = ::RightToLeft::Yes; } }
.NET Framework
Available since 1.1
Available since 1.1
Show: