DHDHSoftware/DHSoftware/Views/AddCubicleControl.cs

64 lines
1.9 KiB
C#
Raw Normal View History

2025-03-18 14:19:33 +08:00

2025-04-16 08:52:53 +08:00
using DH.Commons.Enums;
2025-03-18 14:19:33 +08:00
namespace DHSoftware.Views
{
public partial class AddCubicleControl : UserControl
{
private AntdUI.Window window;
public bool submit;
public string CubicleName;
2025-04-16 08:52:53 +08:00
public EnumDetectionType DetectionType;
2025-03-21 08:51:20 +08:00
public AddCubicleControl(AntdUI.Window _window,string TitleName)
2025-03-18 14:19:33 +08:00
{
this.window = _window;
InitializeComponent();
2025-03-21 08:51:20 +08:00
lbTitleName.Text = TitleName;
2025-04-16 08:52:53 +08:00
sltdetectionType.Items.Clear();
foreach (EnumDetectionType value in Enum.GetValues(typeof(EnumDetectionType)))
{
sltdetectionType.Items.Add(value.ToString());
}
2025-03-18 14:19:33 +08:00
// 绑定事件
BindEventHandler();
}
private void BindEventHandler()
{
button_ok.Click += Button_ok_Click;
button_cancel.Click += Button_cancel_Click;
}
private void Button_cancel_Click(object sender, EventArgs e)
{
submit = false;
this.Dispose();
}
private void Button_ok_Click(object sender, EventArgs e)
{
input_name.Status = AntdUI.TType.None;
//检查输入内容
if (String.IsNullOrEmpty(input_name.Text))
{
input_name.Status = AntdUI.TType.Error;
AntdUI.Message.warn(window, "工位名称不能为空!", autoClose: 3);
return;
}
2025-04-16 08:52:53 +08:00
if (String.IsNullOrEmpty(sltdetectionType.Text))
{
input_name.Status = AntdUI.TType.Error;
AntdUI.Message.warn(window, "请选择检测类型!", autoClose: 3);
return;
}
CubicleName =input_name.Text;
DetectionType = (EnumDetectionType)sltdetectionType.SelectedIndex;
2025-03-18 14:19:33 +08:00
submit = true;
this.Dispose();
}
}
}