duheng
2024-11-05 21dd2ae9704c484d5d75b2ed980e5402505da7dc
WinFrmUI/Yw.WinFrmUI.Hydro.Core/06-parter/09-hydrant/HydroHydrantListCtrl.cs
@@ -138,7 +138,7 @@
            {
                _allBindingList.ForEach(x =>
                {
                    x.Update();
                    x.UpdateProperty();
                });
                this.hydroHydrantViewModelBindingSource.ResetBindings(false);
                var allParterList = _allBindingList.Select(x => x.Vmo as Yw.Model.HydroParterInfo).ToList();
@@ -249,7 +249,7 @@
                dlg.SetBindingData(row.Vmo);
                dlg.ReloadDataEvent += (list) =>
                {
                    row.Update();
                    row.UpdateProperty();
                    this.gridView1.RefreshRow(e.RowHandle);
                    this.HydroChangedEvent?.Invoke(new List<Model.HydroParterInfo>() { row.Vmo });
                };
@@ -260,5 +260,30 @@
                this.HydroClickEvent?.Invoke(row.Vmo);
            }
        }
        public void UpdateProperty(string code)
        {
            throw new NotImplementedException();
        }
        public void UpdateCalcuProperty(List<HydroCalcuResult> allCalcuResultList)
        {
            throw new NotImplementedException();
        }
        public void UpdateProperty()
        {
            throw new NotImplementedException();
        }
        public void UpdateProperty(HydroParterInfo parter)
        {
            throw new NotImplementedException();
        }
        public void UpdateProperty(List<HydroParterInfo> parterList)
        {
            throw new NotImplementedException();
        }
    }
}