56 lines
1.5 KiB
C#
56 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
using System.Xml.Linq;
|
|
using AntdUI;
|
|
|
|
namespace DHSoftware.Views
|
|
{
|
|
public partial class AddCubicleWindow : Window
|
|
{
|
|
public AddCubicleWindow()
|
|
{
|
|
InitializeComponent();
|
|
btnOK.DialogResult = DialogResult.OK;
|
|
btnCancel.DialogResult = DialogResult.Cancel;
|
|
this.AcceptButton = btnOK;
|
|
this.CancelButton = btnCancel;
|
|
}
|
|
public string CubicleName { get; private set; }
|
|
private void btnOK_Click(object sender, EventArgs e)
|
|
{
|
|
if (ValidateInput())
|
|
{
|
|
this.DialogResult = DialogResult.OK;
|
|
this.Close();
|
|
}
|
|
}
|
|
|
|
private void btnCancel_Click(object sender, EventArgs e)
|
|
{
|
|
this.DialogResult = DialogResult.Cancel;
|
|
this.Close();
|
|
}
|
|
|
|
private bool ValidateInput()
|
|
{
|
|
if (string.IsNullOrWhiteSpace(txtName.Text))
|
|
{
|
|
MessageBox.Show("请输入有效的名称", "输入错误",
|
|
MessageBoxButtons.OK,
|
|
MessageBoxIcon.Warning);
|
|
txtName.Focus();
|
|
return false;
|
|
}
|
|
CubicleName = txtName.Text.Trim();
|
|
return true;
|
|
}
|
|
}
|
|
}
|