lixiaojun
2025-01-22 46f64905a3c309a50c0f245b3350cdeb8dd699c6
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
using DevExpress.XtraEditors;
 
namespace HStation.WinFrmUI
{
    public partial class ValvePerform2dEditDlg : XtraForm
    {
        public ValvePerform2dEditDlg()
        {
            InitializeComponent();
        }
 
        /// <summary>
        /// 回调事件
        /// </summary>
        public event Func<Yw.Geometry.CubicSpline2d, Task<bool>> ReloadDataEvent;
 
        /// <summary>
        /// 初始化数据
        /// </summary>
        public void SetBindingData(Yw.Geometry.CubicSpline2d ql)
        {
            if (ql == null)
            {
                return;
            }
 
            this.curveExpressEditCtrl1.SetBindingData(ql);
        }
 
        public void SetAxisTile(string x, string y)
        {
            this.curveExpressEditCtrl1.SetAxisTile(x, y);
        }
 
        /// <summary>
        /// 绑定数据
        /// </summary>
        public void SetBindingData(List<Yw.Geometry.Point2d> pt_ql_list,
                    List<Yw.Geometry.Point2d> def_pt_ql_list)
        {
            this.curveExpressEditCtrl1.SetBindingData(pt_ql_list, def_pt_ql_list);
        }
 
        //确定
        private async void btnOk_Click(object sender, EventArgs e)
        {
            var bol = this.curveExpressEditCtrl1.GetPoints(
                out List<Yw.Geometry.Point2d> pt_ql_list);
            if (!bol)
            {
                return;
            }
 
            var cubic_spline_ql = new Yw.Geometry.CubicSpline2d(pt_ql_list);
            var result = await this.ReloadDataEvent?.Invoke(cubic_spline_ql);
            if (!result)
            {
                XtraMessageBox.Show("更新失败!");
                return;
            }
            XtraMessageBox.Show("更新成功!");
            this.DialogResult = DialogResult.OK;
            this.Close();
        }
    }
}