c# winform 表單起始位置 設定

來源:互聯網
上載者:User

標籤:

表單起始位置為頂部中間,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 表單起始位置 設定

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.