码迷,mamicode.com
首页 > 移动开发 > 详细

WinForm不让窗体移动到屏幕外

时间:2016-01-07 10:18:53      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:

不让Form移动到屏幕外,先给窗体添加Move事件,然后判断并重新设置位置。

代码:

private void FormMain_Move(object sender, EventArgs e)
        {
            Rectangle r = Screen.GetWorkingArea(this);
            if(this.Top <=0)
            {
                this.Top = r.Top;
            }
            if (this.Left <=0)
            {
                this.Left = 0;
            }
            if (this.Right > r.Right)
            {
                this.Left = r.Right - this.Width;
            }
            if (this.Bottom > r.Bottom)
            {
                this.Top = r.Bottom - this.Height;
            }
        }

 

WinForm不让窗体移动到屏幕外

标签:

原文地址:http://www.cnblogs.com/lantianyuyang/p/5108690.html

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