本文实例为大家分享了winform可拖动的自定义label控件,供大家参考,具体内容如下
效果预览:
实现步骤如下:
(1)首先在项目上右击选择:添加->新建项,添加自定义控件
(2)自定义的一个label让它继承labelcontrol控件,labelcontrol控件是devexpress控件库里面的一种,和label控件差不多,想了解更多关于devexpress控件,推荐到devexpress控件论坛学习:
1
|
public partial class labelmodule : labelcontrol |
(3)这个label需要实现的mousedown。
1
2
3
4
5
6
7
|
private void labelmodule_mousedown( object sender, mouseeventargs e) { ismousedown = true ; mousepreposition = new point(e.x, e.y); this .borderstyle = devexpress.xtraeditors.controls.borderstyles.simple; this .cursor = cursors.sizeall; } |
(4)mouseup,也就是鼠标弹起的方法。
1
2
3
4
5
6
|
private void labelmodule_mouseup( object sender, mouseeventargs e) { ismousedown = false ; this .borderstyle = devexpress.xtraeditors.controls.borderstyles. default ; this .cursor = cursors. default ; } |
(5)mousemove,也就是鼠标移动时的方法。
1
2
3
4
5
6
|
private void labelmodule_mousemove( object sender, mouseeventargs e) { if (!ismousedown) return ; this .top = this .top + (e.y - mousepreposition.y); this .left = this .left + (e.x - mousepreposition.x); } |
e.x,e.y 指的是:鼠标的坐标因所引发的事件而异。例如,当处理 control.mousemove 事件时,鼠标的坐标值是相对于引发事件的控件的坐标。一些与拖放操作相关的事件具有相对于窗体原点或屏幕原点的关联的鼠标坐标值。
完整代码:labelmodule.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
using system; using system.collections.generic; using system.componentmodel; using system.data; using system.drawing; using system.linq; using system.text; using system.windows.forms; using devexpress.xtraeditors; namespace ijprintersoftware { public partial class labelmodule : labelcontrol { private bool ismousedown = false ; private point mousepreposition; private void init() { initializecomponent(); this .mousedown += new mouseeventhandler(labelmodule_mousedown); this .mouseup += new mouseeventhandler(labelmodule_mouseup); this .mousemove+= new mouseeventhandler(labelmodule_mousemove); } public labelmodule() { init(); } private void labelmodule_mousedown( object sender, mouseeventargs e) { ismousedown = true ; mousepreposition = new point(e.x, e.y); this .borderstyle = devexpress.xtraeditors.controls.borderstyles.simple; this .cursor = cursors.sizeall; } private void labelmodule_mouseup( object sender, mouseeventargs e) { ismousedown = false ; this .borderstyle = devexpress.xtraeditors.controls.borderstyles. default ; this .cursor = cursors. default ; } private void labelmodule_mousemove( object sender, mouseeventargs e) { if (!ismousedown) return ; this .top = this .top + (e.y - mousepreposition.y); this .left = this .left + (e.x - mousepreposition.x); } } } |
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/a1061747415/article/details/47656307