Introduction
In this tip, I will show how you can hide the control box like minimize, maximize, close button and change the look feel of your windows application form.
You can change the look and feel of login form in Windows application by the hiding of minimize, maximize, close button.
To change the look and feel, follow the steps given below.
Step 1: Create a Windows application named ‘Windows App’.
Step 2: Add a label and change the text like name of your application in your default form named ‘Form1
’.
Add some more functionality like
- Add some controls like button, label, textbox and groupbox
- Change the background color of form via properties->background color
Step 3: Run the application
Purpose
Hide the control box like minimize, maximize, close button and change the look and feel of the form.
Solution
- Change the ‘
FormBorderStyle
’ property of the form as ‘None
’ instead of default value ‘sizable
’.
- Run the application and see the form.
- But here is a drawback like how to close the application if user wants, so you have to add close button for closing on the form.
- Call the
close()
method on click event of the close button to close the form.
private void button2_Click(object sender, EventArgs e)
{
Close();
}
- Run the application and check it.