MainMenu.GetForm Método

Definición

Obtiene el objeto Form que contiene este nodo.

public:
 System::Windows::Forms::Form ^ GetForm();
public System.Windows.Forms.Form GetForm ();
member this.GetForm : unit -> System.Windows.Forms.Form
Public Function GetForm () As Form

Devoluciones

Form

Objeto Form que es el contenedor de este control. Devuelve null si el objeto MainMenu no está actualmente hospedado en un formulario.

Ejemplos

En el ejemplo de código siguiente se usa el GetForm método para determinar si hay un MainMenu elemento primario actualmente en el formulario. Si la llamada en el código de ejemplo a GetForm no devuelve null, el código clona la estructura de menús del MainMenu mediante el CloneMenu método . A continuación, el código establece la RightToLeft propiedad en true en la nueva copia de MainMenu para crear un MainMenu objeto que se puede usar para los idiomas que admiten texto de derecha a izquierda. En este ejemplo se requiere que tenga un MainMenu objeto creado denominado 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;
   }
}
public void CloneMyMenu()
{
   // Determine if mainMenu1 is currently hosted on the form.
   if(mainMenu1.GetForm() != null)
   {
      // 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;
   }
}
Public Sub CloneMyMenu()
    ' Determine if mainMenu1 is currently hosted on the form.
    If (mainMenu1.GetForm() IsNot Nothing) Then
        ' Create a copy of the MainMenu that is hosted on the form.
        Dim mainMenu2 As MainMenu = mainMenu1.CloneMenu()
        ' Set the RightToLeft property for mainMenu2.
        mainMenu2.RightToLeft = RightToLeft.Yes
    End If
End Sub

Comentarios

Esta propiedad permite determinar si un elemento específico MainMenu está primario en un formulario. La propiedad se usa normalmente cuando se usan varios MainMenu objetos en un formulario y debe determinar cuál está siendo utilizado actualmente por un formulario.

Se aplica a

Consulte también