Control.Focused Свойство
Определение
Возвращает значение, указывающее, имеется ли на элементе управления фокус ввода.Gets a value indicating whether the control has input focus.
public:
virtual property bool Focused { bool get(); };
[System.ComponentModel.Browsable(false)]
public virtual bool Focused { get; }
member this.Focused : bool
Public Overridable ReadOnly Property Focused As Boolean
Значение свойства
Значение true
, если фокус находится на элементе управления; в противном случае — значение false
.true
if the control has focus; otherwise, false
.
- Атрибуты
Примеры
В следующем примере кода отключается MenuItem, если TextBox не имеет фокуса.The following code example disables a MenuItem if a TextBox does not have focus. В этом примере требуется наличие Form с TextBox с именем textBox1
и двумя объектами MenuItem с именами menuItemEdit
и menuItemEditInsertCustomerInfo
.This example requires that you have a Form with a TextBox named textBox1
and two MenuItem objects named menuItemEdit
and menuItemEditInsertCustomerInfo
.
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 для расширения базовой реализации.When overriding the Focused property in a derived class, use the base class's Focused property to extend the base implementation. В противном случае необходимо предоставить всю реализацию.Otherwise, you must provide all the implementation.