基线 SVN r240

SVN-Revision: r240
This commit is contained in:
cyf
2025-02-06 06:46:06 +00:00
commit ab56a9bcf7
5317 changed files with 902274 additions and 0 deletions
+45
View File
@@ -0,0 +1,45 @@
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;
}
}
}