ButtonBase.IsDefault Property

Definition

Gets or sets a value indicating whether the button control is the default button.

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

Property Value

true if the button control is the default button; otherwise, false.

Remarks

When the IsDefault property is set to true, the button is the default button for the Form. This means that the button is clicked when the ENTER key is pressed if no other button or any other control that captures the ENTER key has focus.

To specify the default button of a form, set the AcceptButton property of the form to the desired button.

Applies to

See also