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
| using Yw.Model;
|
| namespace Yw.WinFrmUI
| {
| public partial class HydroWorkingEvaluationDlg : DevExpress.XtraBars.Ribbon.RibbonForm
| {
| public HydroWorkingEvaluationDlg()
| {
| InitializeComponent();
| this.IconOptions.Icon = Yw.WinFrmUI.GlobalParas.AppIcon;
| }
|
|
| /// <summary>
| /// 绑定数据
| /// </summary>
| public void SetBindingData
| (
| Dictionary<string, HydroVisualInfo> allVisualDict,
| List<HydroMonitorVmo> allMonitorList,
| List<HydroWorkingMonitorViewModel> allWorkingMonitorList,
| Dictionary<string, HydroCalcuVisualResult> allCalcuResultDict
| )
| {
| this.hydroWorkingEvaluationCtrl1.SetBindingData(allVisualDict, allMonitorList, allWorkingMonitorList, allCalcuResultDict);
| }
|
|
| }
| }
|
|