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();
| }
| }
| }
|
|