winform 彈出窗體位置設定

2022-07-21 20:00:15 字數 1434 閱讀 8251

***

一、c#中彈出視窗位置

加入命名空間using system.drawing和using system.windows.forms

假定視窗名為form1,則

form1.startposition = formstartposition.centerscreen;

窗體位置在螢幕中間

form1.startposition = formstartposition.centerparent;

窗體在其父視窗中間

form1.startposition = formstartposition.manual;

窗體在有其空間的location屬性而定

form1.startposition =formstartposition.windowsdefaultbounds;

窗體位置由windows預設位置決定,窗體大小也是windows預設大小

form1.startposition =formstartposition.windowsdefaultlocation

窗體位置是windows預設,大小在窗體大小中確定

二、獲取螢幕

int width=systeminformation.virtualscreen.width;

獲取螢幕寬度

int height = systeminformation.virtualscreen.height;

獲取螢幕高度

一、c#中彈出視窗位置

加入命名空間using system.drawing和using system.windows.forms

假定視窗名為form1,則

form1.startposition = formstartposition.centerscreen;

窗體位置在螢幕中間

form1.startposition = formstartposition.centerparent;

窗體在其父視窗中間

form1.startposition = formstartposition.manual;

窗體在有其空間的location屬性而定

form1.startposition =formstartposition.windowsdefaultbounds;

窗體位置由windows預設位置決定,窗體大小也是windows預設大小

form1.startposition =formstartposition.windowsdefaultlocation

窗體位置是windows預設,大小在窗體大小中確定

二、獲取螢幕

int width=systeminformation.virtualscreen.width;

獲取螢幕寬度

int height = systeminformation.virtualscreen.height;

獲取螢幕高度

C 設定彈出窗體位置

一 c 中彈出視窗位置 加入命名空間 using system.drawing using system.windows.forms 假定視窗名為form1,則 窗體位置在螢幕中間 form1.startposition formstartposition.centerscreen 窗體在其父視窗中...

c 設定窗體位置

第一次執行windows窗體時,窗體一般都有乙個預設的顯示位置,一般由屬性startposition指定。常用屬性 1 centerparent 窗體在其父窗體中居中 2 centerscreen 窗體在當前顯示窗體 中居中,尺寸在窗體大小中指定 3 manual 窗體的位置由location屬性確...

窗體位置設定 StartPosition屬性

startposition屬性有如下選項,分別含義如下 centerparent窗體在其父窗體中居中。centerscreen 窗體在當前顯示視窗中居中,其尺寸在窗體大小中指定。manual 窗體的位置由 location 屬性確定。windowsdefaultbounds 窗體定位在 window...