• C# 无边框窗口实现拖动


    原文地址:http://blog.csdn.net/sky___ice/article/details/11533321


    Form1.Designer.cs:

    //

    //Form1

    //

                this.MouseDown += new System.Windows.Forms.MouseEventHandler(Form_MouseDown);
                this.MouseMove += new System.Windows.Forms.MouseEventHandler(Form_MouseMove);
                this.MouseUp += new System.Windows.Forms.MouseEventHandler(Form_MouseUp);
    

    Form1.cs


            #region 无边框窗体拖动
            //-------------------无边框窗体拖动---------------------------
            Point mouseOff;//鼠标移动位置变量
            bool leftFlag;//标签是否为左键
            private void Form1_MouseDown(object sender, MouseEventArgs e)
            {
                if (e.Button == MouseButtons.Left)
                {
                    mouseOff = new Point(-e.X, -e.Y); //得到变量的值
                    leftFlag = true;                  //点击左键按下时标注为true;
                }
            }
            private void Form_MouseMove(object sender, MouseEventArgs e)
            {
                if (leftFlag)
                {
                    Point mouseSet = Control.MousePosition;
                    mouseSet.Offset(mouseOff.X, mouseOff.Y);  //设置移动后的位置
                    (((System.Windows.Forms.PictureBox)sender).Parent).Location = mouseSet;
                }
            }
            private void Form_MouseUp(object sender, MouseEventArgs e)
            {
                if (leftFlag)
                {
                    leftFlag = false;//释放鼠标后标注为false;
                }
            }
    
            [DllImport("user32.dll")]
            public static extern bool ReleaseCapture();
            [DllImport("user32.dll")]
            public static extern bool SendMessage(IntPtr hwnd, int wMsg, int wParam, int lParam);
            public const int WM_SYSCOMMAND = 0x0112;
            public const int SC_MOVE = 0xF010;
            public const int HTCAPTION = 0x0002;
    
            private void Form_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e)
            {
                ReleaseCapture();
                SendMessage(this.Handle, WM_SYSCOMMAND, SC_MOVE + HTCAPTION, 0);
            }
            //------------------------end 无边框窗体拖动-----------------------------------
            #endregion


  • 相关阅读:
    数据表的水平拆分
    高性能网站架构
    文本框内容改变触发事件
    树莓派3B(1)- Raspberry Pi 3B 安装系统并联网
    一年经验Java程序员面经小记
    Windows系统安装总结
    树莓派3B(2)- 配置多个wifi,自动寻找可用网络
    Centos7 Apache实现Http访问SVN资源库
    Centos7搭建svn服务
    读《重构 改善既有代码的设计》有感
  • 原文地址:https://www.cnblogs.com/alfredsun/p/4467241.html
Copyright © 2020-2023  润新知