lixiaojun
2024-09-24 5610ef481946ff15d856f65e08b3f25aeaf3e269
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
namespace Yw.WinFrmUI
{
    public partial class HydroCurveViewDlg : DevExpress.XtraEditors.XtraForm
    {
        public HydroCurveViewDlg()
        {
            InitializeComponent();
            this.IconOptions.Icon = Yw.WinFrmUI.GlobalParas.AppIcon;
        }
 
        /// <summary>
        /// x
        /// </summary>
        public string TitleTextX
        {
            get { return this.hydroCurveViewCtrl1.TitleTextX; }
            set { this.hydroCurveViewCtrl1.TitleTextX = value; }
        }
 
        /// <summary>
        /// y
        /// </summary>
        public string TitleTextY
        {
            get { return this.hydroCurveViewCtrl1.TitleTextY; }
            set { this.hydroCurveViewCtrl1.TitleTextY = value; }
        }
 
        /// <summary>
        /// 
        /// </summary>
        public void SetBindingData(List<HydroCurvePointViewModel> pts)
        {
            this.hydroCurveViewCtrl1.SetBindingData(pts);
        }
 
 
    }
}