duheng
2024-11-05 21dd2ae9704c484d5d75b2ed980e5402505da7dc
WinFrmUI/Yw.WinFrmUI.Hydro.Core/06-parter/02-tank/HydroTankListCtrl.cs
@@ -1,4 +1,5 @@
using DevExpress.XtraEditors;
using Yw.Model;
namespace Yw.WinFrmUI
{
@@ -137,7 +138,7 @@
            {
                _allBindingList.ForEach(x =>
                {
                    x.Update();
                    x.UpdateProperty();
                });
                this.hydroTankViewModelBindingSource.DataSource = _allBindingList;
                this.hydroTankViewModelBindingSource.ResetBindings(false);
@@ -289,7 +290,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 });
                };
@@ -300,5 +301,25 @@
                this.HydroClickEvent?.Invoke(row.Vmo);
            }
        }
        public void UpdateProperty()
        {
            throw new NotImplementedException();
        }
        public void UpdateProperty(HydroParterInfo parter)
        {
            throw new NotImplementedException();
        }
        public void UpdateProperty(List<HydroParterInfo> parterList)
        {
            throw new NotImplementedException();
        }
        public void UpdateCalcuProperty(List<HydroCalcuResult> allCalcuResultList)
        {
            throw new NotImplementedException();
        }
    }
}