
Creating a new form in C# is fairly simple, thanks to the Form class. Windows Forms provide your project with components, such as dialog boxes, menus, buttons, and many other controls, that make up a standard Windows application user interface (UI). You can drag the controls onto your application's main form and adjust their size and position. The IDE automatically adds the source code to create an instance of the appropriate class and initialize it.
You can learn from msdn of Microsoft site by watching c# forms video:
• How to create a new Windows Forms application.
• How to switch between Code view and Design view.
• How to change the Windows Form's properties.
• How to add controls to the form.
• How to create event handlers for controls.
Click
here to watch the video.