C winform 設定窗體的啟動位置

2021-09-08 10:44:18 字數 539 閱讀 5068

只需要設定窗體的startposition屬性:

registerform.startposition = formstartposition.centerscreen;

formstartposition的全部列舉值:

成員名稱

說明centerparent

窗體在其父窗體中居中。

centerscreen

窗體在當前顯示視窗中居中,其尺寸在窗體大小中指定。 

manual

窗體的位置由 location 屬性確定。 

windowsdefaultbounds

窗體定位在 windows 預設位置,其邊界也由 windows 預設決定。 

windowsdefaultlocation

窗體定位在 windows 預設位置,其尺寸在窗體大小中指定。

更詳細的說明可以看:微軟的官方文件

C winform 設定窗體的啟動位置

只需要設定窗體的startposition屬性 registerform.startposition formstartposition.centerscreen formstartposition的全部列舉值 成員名稱 說明centerparent 窗體在其父窗體中居中。centerscreen ...

C WinForm窗體介面設定

設定方法 一 form物件 屬性 設計中的name 窗體類的類名 acceptbutton 視窗的確定按鈕 cancelbutton 視窗按esc的取消按鈕 1.外觀 backcolor 背景顏色 forecolor 字型顏色 backgroundimage 背景 font 設定字型 formbor...

c winform 窗體起始位置 設定

窗體起始位置為頂部中間,winform居中顯示 int x system.windows.forms.systeminformation.workingarea.width this.size.width 2 int y system.windows.forms.systeminformation....