lixiaojun
2025-02-14 edf1c4d93a7463f911b263b3f177550ac17eea18
WinFrmUI/Yw.WinFrmUI.Hydro.Core/06-visual/02-tank/SetHydroTankListDlg.cs
@@ -33,18 +33,28 @@
        /// <summary>
        /// 绑定数据
        /// </summary>
        public void SetBindingData(Yw.Model.HydroModelInfo hydroInfo)
        public void SetBindingData
            (
                Yw.Model.HydroModelInfo hydroInfo,
                HydroChangeHelper changeHelper = null,
                HydroPropStatusHelper propStatusHelper = null
            )
        {
            this.hydroTankListCtrl1.SetBindingData(hydroInfo);
            this.hydroTankListCtrl1.SetBindingData(hydroInfo, changeHelper, propStatusHelper);
            this.hydroTankListCtrl1.SetBulkView();
        }
        /// <summary>
        /// 绑定数据
        /// </summary>
        public void SetBindingData(List<HydroVisualViewModel> allVisualViewModelList)
        public void SetBindingData
            (
                List<HydroVisualViewModel> allVisualViewModelList,
                HydroChangeHelper changeHelper = null,
                HydroPropStatusHelper propStatusHelper = null
            )
        {
            this.hydroTankListCtrl1.SetBindingData(allVisualViewModelList);
            this.hydroTankListCtrl1.SetBindingData(allVisualViewModelList, changeHelper, propStatusHelper);
            this.hydroTankListCtrl1.SetBulkView();
        }
@@ -71,7 +81,6 @@
        {
            this.HydroChangedViewEvent?.Invoke(obj);
        }