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.

Button::NotifyDefault Method (Boolean)

 

Notifies the Button whether it is the default button so that it can adjust its appearance accordingly.

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

public:
virtual void NotifyDefault(
	bool value
)

Parameters

value
Type: System::Boolean

true if the button is to have the appearance of the default button; otherwise, false.

This method is called by the parent form to notify the Button that it should be set as the default button and to allow it to adjust its appearance accordingly. Typically, a button that is the default button for a form has a thicker border than other buttons on the form.

Calling the NotifyDefault method only draws the button as a default button; it does not change its behavior. To make the button behave like a default button, it must be assigned to the AcceptButton property of the Form.

Notes to Inheritors:

When overriding NotifyDefault in a derived class, be sure to call the base class's NotifyDefault method.

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