c# 窗体位置任意调

 

发现窗体的位置只能通过StartPosition属性设置,而这个属性只提供了5种位置选项,很不够!

今天在网上找到了一个解决的方法,如下:

int x= System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Size.Width/2;
int y=System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Size.Height /2;
this.SetDesktopLocation(x,y);

注释:
System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Size.Width; //当前显示器的宽度
System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Size.Height; //当前显示器的高度
this.SetDesktopLocation(x,y); //设置窗体打开后在显示器上的坐标

posted @ 2012-08-22 16:37  JunBird  阅读(349)  评论(0编辑  收藏  举报