标签:draw color 简单 style 中间 rtp center parent 显示
C#打开窗口的位置的位置设置
引入命名空间using System.Drawing;
一、如果是打开在显示器正中间则很简单:
Form对象.StartPosition = FormStartPosition.CenterScreen;
二、如果是打开的窗口显示在父窗口的正中间,设置:窗口对象.
’StartPosition = FormStartPosition.CenterParent;
三、自己设置位置:
int xWidth = SystemInformation.PrimaryMonitorSize.Width;//获取显示器屏幕宽度
int yHeight = SystemInformation.PrimaryMonitorSize.Height;//获取显示器屏幕高度
Form对象.Location = new Point(xWidth/2, yHeight/2);//两个参数,一个是距离屏幕左边的高度,一个是距离上方的高度
标签:draw color 简单 style 中间 rtp center parent 显示
原文地址:http://www.cnblogs.com/maozheng/p/6059404.html