how to minimize,maximize and restore my form
programmatically?
Answer Posted / 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 View All Answers
Can you explain atlasuiglitz library?
Explain the number or character entered through keyboard gets converted to equivalent ascii code & it get stored on ram in the binary form.
Explain cache memory? : Dot net architecture
Explain the purpose of cache? How is it used? : .NET Architecture
What do you know about machine.config file ?
Explain some of the disadvantages due to microsoft.net?
Explain about validation?
Explain how to develop mobile applications using microsoft mobile internet toolkit (mmit) or .net mobile? : Microsoft dot net mobile
Explain the race around condition? : .NET Architecture How can it be overcome? : .NET Architecture
Explain different pipelining hazards and how are they eliminated? : Dot net architecture
Define a managed code? : Dot net architecture
How to implement the display in the class printdoc (how to resolve the naming conflict) a: no naming conflicts
What are relation objects in dataset?
What are library functions?
Explain 'managed' mean in the .NET context