MainMenu.GetForm Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene il Form che contiene questo controllo.
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
Restituisce
Ottiene il Form che contiene questo controllo. Restituisce null
se il MainMenu non è attualmente incluso in un form.
Esempio
Nell'esempio di codice seguente viene usato il GetForm metodo per determinare se un MainMenu oggetto è attualmente padre del modulo. Se la chiamata nel codice di esempio a GetForm non restituisce null
, il codice clona la struttura del menu dell'uso MainMenu del CloneMenu metodo . Il codice imposta quindi la RightToLeft proprietà su true nella nuova copia di MainMenu per creare un MainMenu oggetto che può essere usato per le lingue che supportano destra a sinistra. In questo esempio è necessario che sia stato creato un MainMenu oggetto denominato 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
Commenti
Questa proprietà consente di determinare se una specifica MainMenu è padre di un modulo. La proprietà viene in genere usata quando vengono usati più MainMenu oggetti in un modulo e è necessario determinare quale è attualmente usato da un modulo.