//
1、在螢幕的右下角顯示窗體
//這個區域不包括工作列的
rectangle screenarea = system.windows.forms.screen.getworkingarea(this);
//這個區域包括工作列,就是螢幕顯示的物理範圍
rectangle screenarea = system.windows.forms.screen.getbounds(this);
int width1 = screenarea.width; //螢幕寬度
int height1 = screenarea.height; //螢幕高度
this.location = new system.drawing.point(width1 - 窗體寬度, height1 - 窗體高度); //指定窗體顯示在右下角
//2、在母窗體的中間顯示子窗體的位置計算
waitform.location = new point((this.location.x + (this.width - waitform.width) / 2),
(this.location.y + (this.height - waitform.height) / 2));
C 獲取螢幕的寬度和高度
c 獲取螢幕的寬度和高度 1 在螢幕的右下角顯示窗體 1 在螢幕的右下角顯示窗體 這個區域不包括工作列的 rectangle screenarea system.windows.forms.screen.getworkingarea this 這個區域包括工作列,就是螢幕顯示的物理範圍 rectan...
獲取螢幕寬度和高度
在android上的瀏覽器有個設定遠近的功能,導致獲取到的螢幕寬度和高度是會根據設定遠近而變化的。但是有個屬性不論如何設定都是不變的。就是螢幕的寬度和高度。var screenw window.outerwidth var screenh window.outerheight msg text wi...
Android獲取螢幕寬度高度
方法一 windowmanager wm windowmanager this getsystemservice context.window service int width wm.getdefaultdisplay getwidth int height wm.getdefaultdispla...