ab56a9bcf7
SVN-Revision: r240
46 lines
1.3 KiB
C#
46 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Drawing;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Lskj.MesWorkreport
|
|
{
|
|
public partial class numLabel : UserControl
|
|
{
|
|
private MouseClickEventHanlder _clickEvent = null;
|
|
/// <summary>
|
|
/// 鼠标点击控件
|
|
/// </summary>
|
|
/// <param name="sender">The sender.</param>
|
|
public delegate void MouseClickEventHanlder(numLabel sender);
|
|
/// <summary>
|
|
/// label对象
|
|
/// </summary>
|
|
///
|
|
public Label GetLabel { get { return lblTitle; } }
|
|
public numLabel()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
/// <summary>
|
|
/// <para>说明:鼠标单击</para>
|
|
/// <para>创建人:龚宇超</para>
|
|
/// <para>创建日期: </para>
|
|
/// <para>修改人:</para>
|
|
/// <para>修改日期:</para>
|
|
/// <para>修改备注:</para>
|
|
/// <para>版本:1.0</para>
|
|
/// </summary>
|
|
/// <param name="dbclickEvent">The dbclick event.</param>
|
|
public void SetClickEvent(MouseClickEventHanlder clickEvent)
|
|
{
|
|
this._clickEvent = clickEvent;
|
|
}
|
|
}
|
|
}
|