lixiaojun
2024-11-08 adf7734a40dec76fc31590906eeadd02c782db90
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
namespace HStation.WinFrmUI
{
    public partial class XhsProjectSimulationHydroCheckResultCtrl : DevExpress.XtraEditors.XtraUserControl
    {
        public XhsProjectSimulationHydroCheckResultCtrl()
        {
            InitializeComponent();
        }
 
        /// <summary>
        /// 点击构件事件
        /// </summary>
        public event Action<string> HydroClickEvent;
 
        /// <summary>
        /// 绑定数据
        /// </summary>
        public void SetBindingData(Yw.WinFrmUI.HydroCheckResult result)
        {
            this.hydroCheckResultCtrl1.SetBindingData(result);
        }
 
        //水力点击
        private void hydroCheckResultCtrl1_HydroClickEvent(string code)
        {
            this.HydroClickEvent?.Invoke(code);
        }
    }
}