minimize form in Winforms
Published: 27. October 2011 | Updated: 27. October 2011License: Microsoft Public License (MS-PL)
Categories: Winforms
Tags: C# UI Winforms
Import namespace
using System.Windows.Forms;
Code
Form form = new Form(); form.WindowState = FormWindowState.Minimized;
| Send us feedback about this snippet » |





