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
| using Yw.Hydro;
| using Yw.EPAnet;
|
| namespace Yw.WinFrmUI
| {
| public partial class HydroSingleWorkingLossCurveDlg : DevExpress.XtraBars.Ribbon.RibbonForm
| {
| public HydroSingleWorkingLossCurveDlg()
| {
| InitializeComponent();
| this.IconOptions.Icon = Yw.WinFrmUI.GlobalParas.AppIcon;
| }
|
| /// <summary>
| /// 绑定数据
| /// </summary>
| public void SetBindingData(Yw.Model.HydroModelInfo hydroInfo, HydroCalcuResult calcuResult, Yw.Model.HydroVisualInfo visual)
| {
| this.hydroSingleWorkingLossCurveCtrl1.SetBindingData(hydroInfo, calcuResult, visual);
| }
|
|
|
| }
| }
|
|