lixiaojun
2025-02-20 8a169e59577fd2cf19ce4ec6cb88e47d0ff79d63
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
using Yw.Vmo;
 
namespace HStation.WinFrmUI
{
    public partial class SimulationPumpAnalyWorkingDlg : DevExpress.XtraBars.Ribbon.RibbonForm
    {
        public SimulationPumpAnalyWorkingDlg()
        {
            InitializeComponent();
            this.IconOptions.Icon = Yw.WinFrmUI.GlobalParas.AppIcon;
        }
 
        /// <summary>
        /// 绑定数据
        /// </summary>
        public void SetBindingData
            (
                Yw.Model.HydroModelInfo hydroInfo,
                List<HydroWorkingVmo> allWorkingList,
                bool isHead = false,
                List<HydroEvaluationVmo> allEvaluationList = null
            )
        {
            if (hydroInfo == null)
            {
                return;
            }
            this.simulationPumpAnalyWorkingCtrl1.SetBindingData(hydroInfo, allWorkingList, isHead, allEvaluationList);
        }
 
 
 
 
    }
}