博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C# 实现类似 QQ 的窗体停靠
阅读量:6758 次
发布时间:2019-06-26

本文共 1565 字,大约阅读时间需要 5 分钟。

直接上代码:

[DllImport("User32.dll")]        public static extern bool PtInRect(ref Rectangle Rects, Point lpPoint);        private void timerShowHide_Tick(object sender, EventArgs e)        {            if (this.WindowState == FormWindowState.Normal)            {                System.Drawing.Point cursorPoint = new Point(Cursor.Position.X, Cursor.Position.Y);//获取鼠标在屏幕的坐标点                Rectangle Rects = new Rectangle(this.Left, this.Top, this.Left + this.Width, this.Top + this.Height);//存储当前窗体在屏幕的所在区域                bool prInRect = PtInRect(ref Rects, cursorPoint);                if (prInRect)                {//当鼠标在当前窗体内                    if (this.Top < 0)//窗体的Top属性小于0                        this.Top = 0;                    else if (this.Left < 0)//窗体的Left属性小于0                        this.Left = 0;                    else if (this.Right > Screen.PrimaryScreen.WorkingArea.Width)//窗体的Right属性大于屏幕宽度                        this.Left = Screen.PrimaryScreen.WorkingArea.Width - this.Width;                }                else                {                    if (this.Top < 5)               //当窗体的上边框与屏幕的顶端的距离小于5时                        this.Top = 5 - this.Height; //将窗体隐藏到屏幕的顶端                    else if (this.Left < 5)         //当窗体的左边框与屏幕的左端的距离小于5时                        this.Left = 5 - this.Width; //将窗体隐藏到屏幕的左端                    else if (this.Right > Screen.PrimaryScreen.WorkingArea.Width - 5)//当窗体的右边框与屏幕的右端的距离小于5时                        this.Left = Screen.PrimaryScreen.WorkingArea.Width - 5;//将窗体隐藏到屏幕的右端                }            }        }

转载地址:http://mnweo.baihongyu.com/

你可能感兴趣的文章
APUE读书笔记-16网络通信-01简介
查看>>
apache站点稍大文件不完整原因及解决
查看>>
python的reduce函数
查看>>
细读shell-6
查看>>
ubuntu11.10安装php mysql wordpress
查看>>
一、2 基于wsgiref定义自己的web框架
查看>>
Ubuntu Server14.04 32位安装odoo8.0简单方法
查看>>
jQuery-easyui下的多表关联的增删改操作
查看>>
我的友情链接
查看>>
兼容IE,Firefox,CSS3 opacity透明度
查看>>
读取Hive中所有表的表结构,并在新Hive库中创建表,索引等
查看>>
XenServer部署系列之02——系统安装及许可
查看>>
linux下FTP服务器搭建
查看>>
程序的查询 ps - 笔记1
查看>>
Conversion to Dalvik format failed with error 1的又一种情形
查看>>
nodejs抓取数据二(列表解析)
查看>>
TextView中实现可点击链接的显示
查看>>
HAOI 树上操作
查看>>
深刻理解Python中的元类(metaclass)以及元类实现单例模式
查看>>
java随机生成n个不相同的整数
查看>>