根據屏幕大小定義初始位置:
(這個不是難,但是最近常常忘記,記著方便查看。)
1 //獲取當前屏幕的長和寬 2 int ScreenX = Screen.PrimaryScreen.Bounds.Width; 3 int ScreenY = Screen.PrimaryScreen.Bounds.Height; 4 5 //注意記得讓窗體的StartPosition的屬性改為Manual,這樣才能自定義 6 //減去的是窗體的長度和寬度的一半,這樣才能讓窗體居中顯示 7 int StartPositionX = ScreenX / 2 - 125; 8 int StartPositionY = ScreenY / 2 - 100; 9 10 this.Location = new System.Drawing.Point(StartPositionX, StartPositionY);
另外,屏幕位置的坐標圖: