源代码 : 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 - 获取显示边界

 

相关文章:

  • 2021-11-21
  • 2021-11-12
  • 2021-11-28
  • 2022-12-23
  • 2021-05-15
  • 2021-11-19
  • 2021-12-26
  • 2021-06-24
猜你喜欢
  • 2021-11-22
  • 2021-12-12
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案