码迷,mamicode.com
首页 > Windows程序 > 详细

winform 无边框窗体拖拽实现

时间:2017-10-15 23:18:38      阅读:270      评论:0      收藏:0      [点我收藏+]

标签:span   win   void   off   sed   mouse   实现   code   forms   

using System;
 using System.Collections.Generic;
 using System.ComponentModel;
 using System.Data;
 using System.Drawing;
 using System.Text;
 using System.Windows.Forms;
 
 namespace WindowsApplication1
 {
     public partial class Form1 : Form
     {
         public Form1()
         {
             InitializeComponent();
         }
 
         private Point mPoint = new Point();
 
         private void Form1_MouseDown(object sender, MouseEventArgs e)
         {
             mPoint.X = e.X;
             mPoint.Y = e.Y;
         }
 
         private void Form1_MouseMove(object sender, MouseEventArgs e)
         {
             if (e.Button == MouseButtons.Left)
             {
                 Point myPosittion = MousePosition;
                 myPosittion.Offset(-mPoint.X, -mPoint.Y);
                 Location = myPosittion;
             } 
         }
     }
 }

 

winform 无边框窗体拖拽实现

标签:span   win   void   off   sed   mouse   实现   code   forms   

原文地址:http://www.cnblogs.com/baimangguo/p/7674765.html

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