Form.ActiveForm プロパティ

定義

アプリケーションで現在アクティブなフォームを取得します。

public:
 static property System::Windows::Forms::Form ^ ActiveForm { System::Windows::Forms::Form ^ get(); };
public static System.Windows.Forms.Form ActiveForm { get; }
public static System.Windows.Forms.Form? ActiveForm { get; }
static member ActiveForm : System.Windows.Forms.Form
Public Shared ReadOnly Property ActiveForm As Form

プロパティ値

現在アクティブなフォームを表す Form。アクティブなフォームがない場合は null

次の例では、アクティブなフォームを取得し、フォーム上のすべてのコントロールを無効にします。 この例では、 Controls フォームのコレクションを使用して、フォーム上の各コントロールを反復処理し、コントロールを無効にします。

void DisableActiveFormControls()
{
   
   // Create an instance of a form and assign it the currently active form.
   Form^ currentForm = Form::ActiveForm;
   
   // Loop through all the controls on the active form.
   for ( int i = 0; i < currentForm->Controls->Count; i++ )
   {
      
      // Disable each control in the active form's control collection.
      currentForm->Controls[ i ]->Enabled = false;

   }
}
public void DisableActiveFormControls()
 {
    // Create an instance of a form and assign it the currently active form.
    Form currentForm = Form.ActiveForm;
    
    // Loop through all the controls on the active form.
    for (int i = 0; i < currentForm.Controls.Count; i++)
    {
       // Disable each control in the active form's control collection.
       currentForm.Controls[i].Enabled = false;
    }
 }
Public Sub DisableActiveFormControls()
    ' Create an instance of a form and assign it the currently active form.
    Dim currentForm As Form = Form.ActiveForm
    
    ' Loop through all the controls on the active form.
    Dim i As Integer
    For i = 0 To currentForm.Controls.Count - 1
        ' Disable each control in the active form's control collection.
        currentForm.Controls(i).Enabled = False
    Next i
End Sub

注釈

このメソッドを使用すると、現在アクティブなフォームへの参照を取得して、フォームまたはそのコントロールに対してアクションを実行できます。

アプリケーションがマルチドキュメント インターフェイス (MDI) アプリケーションの場合は、 プロパティを ActiveMdiChild 使用して、現在アクティブな MDI 子フォームを取得します。

適用対象

こちらもご覧ください