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