Form.ActiveMdiChild Proprietà

Definizione

Ottiene la finestra figlio MDI attualmente attiva.

public:
 property System::Windows::Forms::Form ^ ActiveMdiChild { System::Windows::Forms::Form ^ get(); };
[System.ComponentModel.Browsable(false)]
public System.Windows.Forms.Form ActiveMdiChild { get; }
[System.ComponentModel.Browsable(false)]
public System.Windows.Forms.Form? ActiveMdiChild { get; }
[<System.ComponentModel.Browsable(false)>]
member this.ActiveMdiChild : System.Windows.Forms.Form
Public ReadOnly Property ActiveMdiChild As Form

Valore della proprietà

Form

Restituisce un oggetto Form che rappresenta la finestra figlio MDI attiva oppure null se non è presente alcuna finestra figlio.

Attributi

Esempio

Nell'esempio seguente viene ottenuto un riferimento al modulo figlio MDI attivo e viene eseguito il ciclo attraverso tutti i controlli del modulo, reimpostando le TextBox proprietà Text . In questo esempio è necessario che sia stata creata una maschera padre MDI e che questa chiamata al metodo venga eseguita dal modulo padre MDI.

public:
   void ClearAllChildFormText()
   {
      
      // Obtain a reference to the currently active MDI child form.
      Form^ tempChild = this->ActiveMdiChild;
      
      // Loop through all controls on the child form.
      for ( int i = 0; i < tempChild->Controls->Count; i++ )
      {
         
         // Determine if the current control on the child form is a TextBox.
         if ( dynamic_cast<TextBox^>(tempChild->Controls[ i ]) )
         {
            
            // Clear the contents of the control since it is a TextBox.
            tempChild->Controls[ i ]->Text = "";
         }

      }
   }
public void ClearAllChildFormText()
 {
    // Obtain a reference to the currently active MDI child form.
    Form tempChild = this.ActiveMdiChild;
    
    // Loop through all controls on the child form.
    for (int i = 0; i < tempChild.Controls.Count; i++)
    {
       // Determine if the current control on the child form is a TextBox.
       if (tempChild.Controls[i] is TextBox)
       {
          // Clear the contents of the control since it is a TextBox.
          tempChild.Controls[i].Text = "";
       }
    }
 }
Public Sub ClearAllChildFormText()
    ' Obtain a reference to the currently active MDI child form.
    Dim tempChild As Form = Me.ActiveMdiChild
    
    ' Loop through all controls on the child form.
    Dim i As Integer
    For i = 0 To tempChild.Controls.Count - 1
        ' Determine if the current control on the child form is a TextBox.
        If TypeOf tempChild.Controls(i) Is TextBox Then
            ' Clear the contents of the control since it is a TextBox.
            tempChild.Controls(i).Text = ""
        End If
    Next i
End Sub

Commenti

È possibile usare questo metodo per determinare se esistono moduli figlio MDI aperti nell'applicazione MDI. È anche possibile usare questo metodo per eseguire operazioni in una finestra figlio MDI dal modulo padre MDI o da un altro modulo visualizzato nell'applicazione.

Se il modulo attualmente attivo non è un modulo figlio MDI, è possibile usare la ActiveForm proprietà per ottenere un riferimento.

Si applica a

Vedi anche