How to: Designate a Windows Forms Button as the Accept Button Using the Designer

 

On any Windows Form, you can designate a Button control to be the accept button, also known as the default button. Whenever the user presses the ENTER key, the default button is clicked regardless of which other control on the form has the focus. The exceptions to this are when the control with focus is another button — in that case, the button with the focus will be clicked — or a multiline text box, or a custom control that traps the ENTER key.

Note

The dialog boxes and menu commands you see might differ from those described in Help depending on your active settings or edition. To change your settings, choose Import and Export Settings on the Tools menu. For more information, see Customizing Development Settings in Visual Studio.

To designate the accept button

  1. Select the form on which the button resides.

  2. In the Properties window, set the form's AcceptButton property to the Button control's name.

See Also

AcceptButton
Button Control Overview
Ways to Select a Windows Forms Button Control
How to: Respond to Windows Forms Button Clicks
How to: Designate a Windows Forms Button as the Cancel Button Using the Designer
Button Control