make winforms full-screen csharp

Code Example - make winforms full-screen csharp

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