lixiaojun
2024-09-24 1716b1da53462a010699c2af750afde753b44df6
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
namespace HStation.WinFrmUI
{
    public partial class XhsProjectSimulationHydroCheckFailedDlg : DevExpress.XtraEditors.XtraForm
    {
        public XhsProjectSimulationHydroCheckFailedDlg()
        {
            InitializeComponent();
        }
 
        /// <summary>
        /// 点击构件事件
        /// </summary>
        public event Action<string> HydroClickEvent;
 
        private List<XhsProjectSimulationHydroCheckFailedViewModel> _allBindingList = null;
 
        /// <summary>
        /// 绑定数据
        /// </summary>
        public void SetBindingData(List<Yw.EPAnet.CheckFailed> allFailedList)
        {
            this.xhsProjectSimulationHydroCheckFailedCtrl1.SetBindingData(allFailedList);
        }
 
        private void xhsProjectSimulationHydroCheckFailedCtrl1_HydroClickEvent(string obj)
        {
            this.HydroClickEvent?.Invoke(obj);
        }
 
 
    }
}