ButtonBase.IsDefault 属性

定义

获取或设置一个值,通过该值指示按钮控件是否为默认按钮。

protected:
 property bool IsDefault { bool get(); void set(bool value); };
protected public:
 property bool IsDefault { bool get(); void set(bool value); };
protected bool IsDefault { get; set; }
protected internal bool IsDefault { get; set; }
member this.IsDefault : bool with get, set
Protected Property IsDefault As Boolean
Protected Friend Property IsDefault As Boolean

属性值

Boolean

如果按钮控件是默认按钮,则为 true;否则为 false

注解

IsDefault当属性设置为true时,该按钮是默认按钮Form。 这意味着,如果没有其他按钮或任何其他捕获 ENTER 键的控件具有焦点,则当按下 ENTER 键时,将单击该按钮。

若要指定窗体的默认按钮,请将 AcceptButton 窗体的属性设置为所需按钮。

适用于

另请参阅