duheng
2025-01-13 1b7957fac12e80698971513b30e65772c4c5c038
WinFrmUI/Yw.WinFrmUI.Hydro.Core/06-visual/06-elbow/SetHydroElbowListDlg.cs
@@ -34,18 +34,28 @@
        /// <summary>
        /// 绑定数据
        /// </summary>
        public void SetBindingData(Yw.Model.HydroModelInfo hydroInfo)
        public void SetBindingData
            (
                Yw.Model.HydroModelInfo hydroInfo,
                HydroChangeHelper changeHelper = null,
                HydroPropStatusHelper propStatusHelper = null
            )
        {
            this.hydroElbowListCtrl1.SetBindingData(hydroInfo);
            this.hydroElbowListCtrl1.SetBindingData(hydroInfo, changeHelper, propStatusHelper);
            this.hydroElbowListCtrl1.SetBulkView();
        }
        /// <summary>
        /// 绑定数据
        /// </summary>
        public void SetBindingData(List<HydroVisualViewModel> allVisualViewModelList)
        public void SetBindingData
            (
                List<HydroVisualViewModel> allVisualViewModelList,
                HydroChangeHelper changeHelper = null,
                HydroPropStatusHelper propStatusHelper = null
            )
        {
            this.hydroElbowListCtrl1.SetBindingData(allVisualViewModelList);
            this.hydroElbowListCtrl1.SetBindingData(allVisualViewModelList, changeHelper, propStatusHelper);
            this.hydroElbowListCtrl1.SetBulkView();
        }
@@ -73,5 +83,6 @@
            this.HydroChangedViewEvent?.Invoke(obj);
        }
    }
}