Control.Focused プロパティ

定義

コントロールに入力フォーカスがあるかどうかを示す値を取得します。

public:
 virtual property bool Focused { bool get(); };
[System.ComponentModel.Browsable(false)]
public virtual bool Focused { get; }
[<System.ComponentModel.Browsable(false)>]
member this.Focused : bool
Public Overridable ReadOnly Property Focused As Boolean

プロパティ値

コントロールにフォーカスがある場合は true。それ以外の場合は false

属性

次のコード例では、 にフォーカスがない場合に をMenuItemTextBox無効にします。 この例では、 と という名前textBox1の オブジェクトと 2 つの MenuItem オブジェクトmenuItemEditmenuItemEditInsertCustomerInfoTextBoxFormつ が必要です。

private:
   void menuItemEdit_Popup( Object^ /*sender*/, EventArgs^ /*e*/ )
   {
      // Disable the menu item if the text box does not have focus.
      this->menuItemEditInsertCustomerInfo->Enabled = this->textBox1->Focused;
   }
private void menuItemEdit_Popup(object sender, EventArgs e)
{
   // Disable the menu item if the text box does not have focus.
   this.menuItemEditInsertCustomerInfo.Enabled = this.textBox1.Focused;
}
Private Sub menuItemEdit_Popup(sender As Object, _
  e As EventArgs) Handles menuItemEdit.Popup
   ' Disable the menu item if the text box does not have focus.
   Me.menuItemEditInsertCustomerInfo.Enabled = Me.textBox1.Focused
End Sub

注意 (継承者)

派生クラスの プロパティをオーバーライドする Focused 場合は、基底クラスの Focused プロパティを使用して基本実装を拡張します。 それ以外の場合は、すべての実装を指定する必要があります。

適用対象

こちらもご覧ください