標籤:
表單起始位置為頂部中間,WinForm置中顯示:
int x = (System.Windows.Forms.SystemInformation.WorkingArea.Width - this.Size.Width) / 2; int y = (System.Windows.Forms.SystemInformation.WorkingArea.Height - this.Size.Height) / 2; this.StartPosition = FormStartPosition.Manual; //表單的位置由Location屬性決定 this.Location = (Point)new Size(x, y); //表單的起始位置為(x,y)
其他注意點:
System.Windows.Forms.SystemInformation.WorkingArea.Width //螢幕寬度System.Windows.Forms.SystemInformation.WorkingArea.Height //螢幕高度(去系統工作列,當顯示有工作列的時候)this.Size.Width //自己表單的寬度,this.Size.Width //自己表單的高度this.ClientRectangle.Width //工作區域寬度this.ClientRectangle.Height //工作區域高度設定視窗初始位置this.StartPosition = FormStartPosition.Manual; //表單的位置由Location屬性決定this.StartPosition = FormStartPosition.CenterParent; //表單在其父表單中置中this.StartPosition = FormStartPosition.CenterScreen; //表單在當前顯示視窗中置中,尺寸在表單大小中指定this.StartPosition = FormStartPosition.WindowsDefaultBounds; //表單定位在windows預設位置,邊界也由windows預設決定this.StartPosition = FormStartPosition.WindowsDefaultLocation; //表單定位在windows預設位置,尺寸在表單大小中指定
通過指定表單Locaiton來,設定表單位置
this.StartPosition = FormStartPosition.Manual; //表單的位置由Location屬性決定this.Location = (Point)new Size(0, 0); //表單的起始位置為0,0
建立表單時, 設定寬度和高度
this.ClientSize = new System.Drawing.Size(x1,y1); //X1 為寬度,Y1為高度
擷取螢幕大小(using System.Drawing)
Rectangle rect = Screen.GetWorkingArea(this);Point p = new Point(rect.Width,rect.Height);this.Location = p;
c# winform 表單起始位置 設定