Control.Focused 属性

获取一个值,该值指示控件是否有输入焦点。

**命名空间:**System.Windows.Forms
**程序集:**System.Windows.Forms(在 system.windows.forms.dll 中)

语法

声明
Public Overridable ReadOnly Property Focused As Boolean
用法
Dim instance As Control
Dim value As Boolean

value = instance.Focused
public virtual bool Focused { get; }
public:
virtual property bool Focused {
    bool get ();
}
/** @property */
public boolean get_Focused ()
public function get Focused () : boolean

属性值

如果控件有焦点,则为 true;否则为 false

备注

给继承者的说明 在派生类中重写 Focused 属性时,请使用基类的 Focused 属性来扩展基实现。否则,您必须提供所有实现。

示例

下面的代码示例禁用 MenuItem(如果 TextBox 没有焦点)。该示例要求有一个 Form,其上带有一个名为 textBox1TextBox 和两个分别名为 menuItemEditmenuItemEditInsertCustomerInfoMenuItem 对象。

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
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 void menuItemEdit_Popup(Object sender, EventArgs e)
{
    // Disable the menu item if the text box does not have focus.
    this.menuItemEditInsertCustomerInfo.set_Enabled(this.textBox1.
        get_Focused());
} //menuItemEdit_Popup

平台

Windows 98、Windows 2000 SP4、Windows CE、Windows Millennium Edition、Windows Mobile for Pocket PC、Windows Mobile for Smartphone、Windows Server 2003、Windows XP Media Center Edition、Windows XP Professional x64 Edition、Windows XP SP2、Windows XP Starter Edition

.NET Framework 并不是对每个平台的所有版本都提供支持。有关受支持版本的列表,请参见系统要求

版本信息

.NET Framework

受以下版本支持:2.0、1.1、1.0

.NET Compact Framework

受以下版本支持:2.0、1.0

请参见

参考

Control 类
Control 成员
System.Windows.Forms 命名空间
Control.CanFocus 属性
Focus
Control.CanSelect 属性
Control.ContainsFocus 属性