duheng
7 天以前 4de480ec624d3b79ca690dc906e10cd2fbdc9be7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
using System;
using System.Windows.Forms;
 
namespace IStation.WinFrmUI.Curve
{
    public partial class SetWorkPointDlg : DevExpress.XtraEditors.XtraForm
    {
        public SetWorkPointDlg()
        {
            InitializeComponent();
        }
 
        public decimal WorkQ
        {
            get
            {
                if (decimal.TryParse(this.txtQ.Text.Trim(), out decimal q))
                {
                    return q;
                }
                return 0;
            }
            set => this.txtQ.EditValue = value;
        }
 
        private void btnOK_Click(object sender, EventArgs e)
        {
            this.DialogResult = DialogResult.OK;
            this.Close();
        }
    }
}