关于类似QQ界面隐藏的问题

将QQ窗体上边框拖到屏幕顶端时,QQ窗会自动隐藏,实现这一过程要使用timer1控件对鼠标进行实时监控,用API函数PtInRect() 判断当前鼠标是否在QQ窗体上,如果在,判断窗体的Top属性值.代码如下:

 

先调用命名空间 using System.Runtime.InteropServices;

 

  1. class Win32API
  2.         {
  3.             [DllImport("user32.dll")]
  4.             public static extern bool PtInRect(ref Rectangle r, Point p);
  5.         }
  6.         private void timer1_Tick(object sender, EventArgs e)
  7.         {
  8.             System.Drawing.Point pp = new Point(Cursor.Position.X, Cursor.Position.Y);//获取鼠标在屏幕的坐标点
  9.             Rectangle Rects = new Rectangle(this.Left, this.Top, this.Left + this.Width, this.Top + this.Height);//存储当前窗体在屏幕的所在区域
  10.                       if ((this.Top < 0) && Win32API.PtInRect(ref Rects, pp))//当鼠标在当前窗体内,并且窗体的Top属性小于0
  11.                 this.Top = 0;              //设置窗体的Top属性为0,就是将窗口上边沿紧靠顶部          
  12.             else if (this.Top > -5 && this.Top < 5 && !(Win32API.PtInRect(ref Rects, pp)))//当窗体的上边框与屏幕的顶端的距离小于5时
  13.                 this.Top = 5 - this.Height;//将QQ窗体隐藏到屏幕的顶端
  14.           }

timer1的interval 属性值改为1

其实原理很简单,这里只提供了隐藏上方,可以通过上面的例子实现左右以及下方隐藏。

 

你可能感兴趣的:(timer,api,qq,user,存储)