C# 设置面板居中

 

 

 源代码 : this.setBounds(10,10,200,200);

 

///<param name="X" >距左边的距离</param>

///<param name="Y" >距上边的距离</param>

///<param name="width" >面板宽度</param>

///<param name="height" >面板高度</param>

 

<param name="this" >面板</param>

 

            this.Width = 10;
            this.Height = 30;
            this.Left = 5;
            this.Top = 0;


高级应用:

 

Screen.PrimaryScreen.Bounds.Height

 this.setBounds((Screen.PrimaryScreen.Bounds.Width-FormWidth)/2,(Screen.PrimaryScreen.Bounds.Height-FormHeight)/2,FormWidth,FormHeight);

Screen   -   表示单个系统上的一个或多个显示设备

PrimaryScreen  -  获取主显示

Bounds - 获取显示边界

 

posted @ 2012-05-10 11:17  小四儿  阅读(797)  评论(0编辑  收藏  举报