using DevExpress.XtraEditors; using HStation.Vmo; using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace HStation.WinFrmUI { public partial class AssetsExchangerCurveQLMgrPage : DocumentPage { public AssetsExchangerCurveQLMgrPage() { InitializeComponent(); this.PageTitle.Caption = "水头损失曲线"; this.PageTitle.HeaderSvgImage = AssetsMainSvgImageHelper.Curve; this.PageTitle.SvgImageSize = new Size(24, 24); } private AssetsExchangerMainVmo _vmo = null; /// /// /// public void SetBindingData(AssetsExchangerMainVmo vmo) { if (vmo == null) { return; } _vmo = vmo; this.PageTitle.Caption = $"{vmo.Name}\r\n水头损失曲线"; } } }