duheng
2025-03-28 9be9ba4e159969fb5e32648c2c34e912ccc3ae6d
WinFrmUI/HStation.WinFrmUI.Xhs.Core/01-home/03-property/HomeXhsProjectPropertyCtrl.cs
@@ -1,9 +1,7 @@
using DevExpress.XtraBars;
using DevExpress.XtraEditors;
using DevExpress.XtraEditors.Repository;
using DevExpress.XtraLayout.Utils;
using DevExpress.XtraVerticalGrid.Events;
using HStation.Vmo;
namespace HStation.WinFrmUI
{
@@ -20,7 +18,7 @@
        /// <summary>
        /// 跳转事件
        /// </summary>
        public event Action<XhsProjectVmo> JumpDirectEvent;
        public event Action<long> JumpDirectEvent;
        /// <summary>
        /// 绑定对象
@@ -246,7 +244,7 @@
            {
                return;
            }
            JumpDirectEvent?.Invoke(this.SelectedObject.Project);
            JumpDirectEvent?.Invoke(this.SelectedObject.Project.ID);
        }
    }
}