Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

ButtonBase::IsDefault Property

 

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

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public protected:
property bool IsDefault {
	bool get();
	void set(bool value);
}

Property Value

Type: System::Boolean

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

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.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft