namespace Yw.WinFrmUI { public partial class HydroCurveViewDlg : DevExpress.XtraEditors.XtraForm { public HydroCurveViewDlg() { InitializeComponent(); this.IconOptions.Icon = Yw.WinFrmUI.GlobalParas.AppIcon; } /// /// x /// public string TitleTextX { get { return this.hydroCurveViewCtrl1.TitleTextX; } set { this.hydroCurveViewCtrl1.TitleTextX = value; } } /// /// y /// public string TitleTextY { get { return this.hydroCurveViewCtrl1.TitleTextY; } set { this.hydroCurveViewCtrl1.TitleTextY = value; } } /// /// /// public void SetBindingData(List pts) { this.hydroCurveViewCtrl1.SetBindingData(pts); } } }