好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

winform实现可拖动的自定义Label控件

本文实例为大家分享了winform可拖动的自定义label控件,供大家参考,具体内容如下

效果预览:

实现步骤如下:

(1)首先在项目上右击选择:添加->新建项,添加自定义控件

(2)自定义的一个label让它继承labelcontrol控件,labelcontrol控件是devexpress控件库里面的一种,和label控件差不多,想了解更多关于devexpress控件,推荐到devexpress控件论坛学习:

?

public partial class labelmodule : labelcontrol

(3)这个label需要实现的mousedown。

?

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,也就是鼠标弹起的方法。

?

private void labelmodule_mouseup( object sender, mouseeventargs e)

     {

       ismousedown = false ;

       this .borderstyle = devexpress.xtraeditors.controls.borderstyles. default ;

       this .cursor = cursors. default ;

     }

(5)mousemove,也就是鼠标移动时的方法。

?

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

?

using system;

using system.collections.generic;

using system测试数据ponentmodel;

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

dy("nrwz");

查看更多关于winform实现可拖动的自定义Label控件的详细内容...

  阅读:61次