码迷,mamicode.com
首页 > Windows程序 > 详细

控制dx窗体的大小及位置

时间:2018-01-10 16:57:40      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:min   normal   gpo   默认   for   sys   log   最大   设置   

//控制默认窗体的高度和宽度

this.Height

this.Width

//控制默认窗体的位置

this.Top

this.Left

//设置为默认窗体,最大化窗体,最小化窗体

this.WindowState = FormWindowState.Normal;
this.WindowState = FormWindowState.Minimized;
this.WindowState = FormWindowState.Maximized;

 

Dome

  this.Height = 200;
  this.Width = 220;
  this.Top = 50;
  Rectangle ScreenArea = System.Windows.Forms.Screen.GetBounds(this);
  int Woswidth=ScreenArea.Width;
  this.Left = Woswidth-230;
  this.WindowState = FormWindowState.Normal;

控制dx窗体的大小及位置

标签:min   normal   gpo   默认   for   sys   log   最大   设置   

原文地址:https://www.cnblogs.com/trdbk/p/8259125.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!