转 实现类似QQ的窗体停靠

Posted 相会

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了转 实现类似QQ的窗体停靠相关的知识,希望对你有一定的参考价值。

[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;//将窗体隐藏到屏幕的右端
                }
            }
        }

  

以上是关于转 实现类似QQ的窗体停靠的主要内容,如果未能解决你的问题,请参考以下文章

wpf里面类似 SplitterPanel SplitterItem 功能的控件怎么实现啊,可以拖放和停靠在窗体上

窗体中怎么让toolstrip漂浮(停靠已经做出来了)(C#)

使用 electron 实现类似新版 QQ 的登录界面效果(阴影背景动画窗体3D翻转)

使用 electron 实现类似新版 QQ 的登录界面效果(阴影背景动画窗体3D翻转)

停靠类似于警报屏幕(带动画的水平滚动)

WPF如何实现像概念版QQ那样的窗体翻转效果?