Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to minimize and maximize in C#.Net?

Tags:

c#

winforms

I would like to ask a question. I want to minimize and maximize manually in C#.net. I changed form's BorderStyle into none. So there are no maximize,minimize and close button from bar. I want to manually create with button like those function. I want to do that three function in three button's click events. How can i do that? Please let me know if you can. Thanks your for your time.

like image 537
Seven Avatar asked Sep 02 '11 15:09

Seven


People also ask

What is the shortcut key to maximize Turbo C?

Press 'Alt' + 'Enter' keys simultaneously from your keyboard to get full screen.

How do you enlarge in C++?

C++ Vector Library - resize() FunctionThe C++ function std::vector::resize() changes the size of vector. If n is smaller than current size then extra elements are destroyed. If n is greater than current container size then new elements are inserted at the end of vector.


1 Answers

You have to set the forms WindowState property something like this:

In Windows Forms:

private void button1_Click(object sender, EventArgs e) {     this.WindowState = FormWindowState.Minimized; } 

In WPF:

private void button1_Click(object sender, RoutedEventArgs e) {     this.WindowState = WindowState.Minimized; } 
like image 190
Robert Avatar answered Sep 21 '22 17:09

Robert