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);
|
}
|
|
|
}
|
}
|