how to minimize,maximize and restore my form
programmatically?



how to minimize,maximize and restore my form programmatically?..

Answer / kamal

See the below C# code.

// Minimize the form window
this.WindowState = FormWindowState.Minimized;

// Restore the form window
this.WindowState = FormWindowState.Normal;

// Maximize the form window
this.WindowState = FormWindowState.Maximized

Is This Answer Correct ?    9 Yes 3 No

Post New Answer

More Dot Net AllOther Interview Questions

What is an interrupt? : Dot net architecture

1 Answers  


What are library functions?

1 Answers   DELL,


Explain about metadata?

1 Answers  


Explain the number or character entered through keyboard gets converted to equivalent ascii code & it get stored on ram in the binary form.

1 Answers  


Explain .net mobile events? : Microsoft dot net mobile

1 Answers  


which of the following statement is true about gac. a)it is being handled by .net framwork b)It is special folder c)it can have files with same name etc etc.

4 Answers   Honeywell,


What are the types of application software?

1 Answers  


What is parallel computing?

1 Answers  


Explain the use of virtual, sealed, override, and abstract.

1 Answers  


Explain write back and write through caches? : .NET Architecture

1 Answers  


Different types of authentication modes in .net framework ?

0 Answers  


What are the new features of .net 2.0?

1 Answers  


Categories