码迷,mamicode.com
首页 > 移动开发 > 详细

新手小白适合、关于C#不规则窗体的移动写法

时间:2017-05-21 20:34:46      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:ati   sed   bsp   tar   send   移动   坐标   offset   新建   

public partial class FrmMain : Form
{
Point old;//新建一个Point对象用来记录窗体原坐标
public FrmMain()
{
InitializeComponent();
}

///鼠标的单击事件

private void FrmMain_MouseDown(object sender, MouseEventArgs e)
{
old = new Point(-e.X, -e.Y);//记录窗体的原位置
}

///鼠标的移动事件

 

private void FrmMain_MouseMove(object sender, MouseEventArgs e)//参数e为鼠标的事件参数
{

//判断鼠标是否按得是左键
if (e.Button == MouseButtons.Left)//e为参数
{
//记录鼠标的当前位置
Point newP = MousePosition;
newP.Offset(old);//平移
this.Location = newP;//改变当前窗体的位置
}
}

新手小白适合、关于C#不规则窗体的移动写法

标签:ati   sed   bsp   tar   send   移动   坐标   offset   新建   

原文地址:http://www.cnblogs.com/ali-k/p/6885761.html

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