1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| namespace HStation.WinFrmUI
| {
| public partial class XhsProjectSimulationHydroCalcuFailedDlg : DevExpress.XtraEditors.XtraForm
| {
| public XhsProjectSimulationHydroCalcuFailedDlg()
| {
| InitializeComponent();
| }
|
|
| /// <summary>
| /// 绑定数据
| /// </summary>
| public void SetBindingData(List<Yw.EPAnet.CalcuFailed> allFailedList)
| {
| this.xhsProjectSimulationHydroCalcuFailedCtrl1.SetBindingData(allFailedList);
| }
|
|
| }
| }
|
|