39 lines
808 B
C#
39 lines
808 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace MisDataName
|
|
{
|
|
public struct ControlData
|
|
{
|
|
public ControlData(Control Ctrl, string OpName)
|
|
{
|
|
string[] Array_NameSplit;
|
|
Array_NameSplit = Ctrl.Name.Split('_');
|
|
TagType = Convert.ToInt32(Array_NameSplit[2]);
|
|
opName = OpName;
|
|
btn = Ctrl;
|
|
|
|
}
|
|
|
|
public int TagType;
|
|
public string opName;
|
|
public Control btn;
|
|
|
|
|
|
}
|
|
public struct ControlChangeByTagType
|
|
{
|
|
public ControlChangeByTagType(int tagType, string value)
|
|
{
|
|
TagType = tagType;
|
|
Value = value;
|
|
}
|
|
|
|
public int TagType;
|
|
public string Value;
|
|
}
|
|
}
|