lixiaojun
2024-11-04 865ca7b89bde6b1793641c8421fc466695d48f6a
WinFrmUI/Yw.WinFrmUI.Hydro.Core/06-parter/14-pipe/HydroPipeListCtrl.cs
文件名从 WinFrmUI/Yw.WinFrmUI.Hydro.Core/06-parter/100-pipe/HydroPipeListCtrl.cs 修改
@@ -1,6 +1,8 @@
锘縩amespace Yw.WinFrmUI
锘縰sing Yw.Model;
namespace Yw.WinFrmUI
{
    public partial class HydroPipeListCtrl : DevExpress.XtraEditors.XtraUserControl, IViewHydroParterList
    public partial class HydroPipeListCtrl : DevExpress.XtraEditors.XtraUserControl, IHydroParterList
    {
        public HydroPipeListCtrl()
        {
@@ -13,6 +15,7 @@
        /// 姘村姏鐐瑰嚮浜嬩欢
        /// </summary>
        public event Action<Yw.Model.HydroParterInfo> HydroClickEvent;
        public event Action<List<HydroParterInfo>> HydroChangedEvent;
        /// <summary>
        /// 鏄剧ず鏌ヨ闈㈡澘
@@ -150,7 +153,7 @@
            }
            if (e.Clicks > 1)
            {
                var dlg = new HydroPipeBulkSetDlg();
                var dlg = new SetHydroPipeDlg();
                dlg.SetBindingData(row.Vmo);
                dlg.ReloadDataEvent += (list) =>
                {
@@ -161,5 +164,15 @@
            }
            this.HydroClickEvent?.Invoke(row.Vmo);
        }
        public void SetBindingData(HydroModelInfo hydroInfo)
        {
            throw new NotImplementedException();
        }
        public void SetBulkSetView()
        {
            throw new NotImplementedException();
        }
    }
}