C# – Default button property in winform app

cvisual studiowinforms

I have a form that takes user input and then let the user get connected to the sql server.
This is happening on button click.But where can I set the property Default button so that the user when clicks enter do the work of that button.

Best Answer

It is called AcceptButton now on the form; set that to the button that will be the default button.
Refer to Form.AcceptButton Property