Windows Forms
In this tutorial we will discuss about Visual Studio IDE and how to make Windows Forms in C-Sharp.
What is Visual Studio IDE?
Visual Studio is a Integrated Development Environment (IDE) that used to edit the code, debug the code, and write the code and many more features to enhance the software development process.
If you have not installed the visual studio. Go through this link to download the latest version of Visual Studio 2022 .
What is C#?
C-Sharp (C#) is a programming language developed by Microsoft in 2001. C# is simple, morden and object oriented programming language that used to create mobile applications, desktop applications and web applications.
Let's make a Windows Form:
There are many steps to create Windows Forms in C# .Net
Step 1: Install Visual Studio or Open Visual Studio.
Step 2: Click or Select Create a new project.
Step 3: Search Or Select Window Forms App(.Net Framework) in the Create new project window.
Step 4: Type your project name in Configure your new project window then click on Create.
Step 5: Select the Toolbox left side of you.
Step 5: Add a button to the form, select the Button control and drag it onto the form.
Step 6: Change the name of the Button in the properties window.
Step 7: Add the code to the form, Double click on the component (Button) to open the Form.cs window.
Step 6: Run the application.
You can see the full video of How to make a Windows Form in C#.Net Framework.
0 Comments