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

黄聪:C#设置窗体打开位置(在显示器的右下角打开)

时间:2015-10-06 15:27:24      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:

 

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

 

 

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

黄聪:C#设置窗体打开位置(在显示器的右下角打开)

标签:

原文地址:http://www.cnblogs.com/huangcong/p/4857100.html

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