namespace DHSoftware.Views
{
    public partial class AddMotionControl : UserControl
    {
        private AntdUI.Window window;
        public bool submit;
        public string MotionName;
        public string MotionType;
        public AddMotionControl(AntdUI.Window _window,string TitleName)
        {
            this.window = _window;
            InitializeComponent();
            lbTitleName.Text = TitleName;
            // 绑定事件
            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;
            }
            MotionName = input_name.Text;
            submit = true;
            this.Dispose();
        }

     
    }
}