The following article describes how to create a simple user Log-in User Interface for the C# windows application.
Jan 19, 2014 Learn how to create a single page web application using C# through Visual Studio Express with Web. (Very Simple) For BEGINNERS. Its ur boy Samath once again. Today I am going to show you how to build a Calculator. It is recommended that you get the visual studio environment. If you don't understand the code don't be afraid to ask questions by leaving a comment below.
1. Start a new Project in c#.
2. Add a new windows form in your project with name login.cs.
3. Re size the Login form and add two textbox named txtUserName and txtPassword,two label controls and one button control named btnOk.
4. set the PasswordChar property to astrick(*) of the txtPassword textbox.
5. Write the function for validating the both textboxs:
6. Verify he correct user name and password from the SQL database:
Learn C# In Visual Studio Code

7. Write the following code in program.cs:
Compile C# In Visual Studio
8. Run the project.