1. 程式人生 > >C#自適應窗體大小

C#自適應窗體大小

System.Drawing.Rectangle rect = Screen.GetWorkingArea(this); //獲取工作電腦的Screen的矩形

            int width = rect.Width;
            int height = rect.Height;
            this.Size = new Size(width, height);
            this.Location = new Point((width - this.Width) / 2, (height - this.Height) / 2);  //用於固定啟動程式是視窗的左上角的位置,

這樣獲取到了螢幕的尺寸,之後所設計控制元件的佈局時要根據其比例大小去設計(程式碼寫到載入函式中)。