ab56a9bcf7
SVN-Revision: r240
48 lines
1.1 KiB
C#
48 lines
1.1 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.WorkshopProgram.Control
|
|
{
|
|
public partial class moduleButton : UserControl
|
|
{
|
|
/// <summary>
|
|
/// 所在行数
|
|
/// </summary>
|
|
public int menuRow;
|
|
/// <summary>
|
|
/// 按钮
|
|
/// </summary>
|
|
public Button GetButton()
|
|
{
|
|
return this.btn_item_img;
|
|
}
|
|
public moduleButton()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// <para>说明:设置模块显示名称</para>
|
|
/// <para>创建人:龚宇超</para>
|
|
/// <para>创建日期:2017-08-16 </para>
|
|
/// <para>修改人:</para>
|
|
/// <para>修改日期:</para>
|
|
/// <para>修改备注:</para>
|
|
/// <para>版本:1.0</para>
|
|
/// </summary>
|
|
/// <param name="text">The text.</param>
|
|
public void SetMenuCaption(string text)
|
|
{
|
|
this.btn_item_title.Text = text;
|
|
}
|
|
}
|
|
}
|