C 設定彈出窗體位置

2022-03-08 07:23:42 字數 793 閱讀 8815

一、c#中彈出視窗位置

加入命名空間

using

system.drawing

using system.windows.forms

假定視窗名為form1,則

//

窗體位置在螢幕中間

form1.startposition =formstartposition.centerscreen;

//窗體在其父視窗中間

form1.startposition =formstartposition.centerparent;

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

form1.startposition =formstartposition.manual;

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

form1.startposition =formstartposition.windowsdefaultbounds;

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

form1.startposition =formstartposition.windowsdefaultlocation

二、獲取螢幕

//

獲取螢幕寬度

int width=systeminformation.virtualscreen.width;

//獲取螢幕高度

int height = systeminformation.virtualscreen.height;

winform 彈出窗體位置設定

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

c 設定窗體位置

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

窗體位置設定 StartPosition屬性

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