duheng
2024-09-14 ee823b8b34abf4faed1b4427940453d8266e9765
WinFrmUI/HStation.WinFrmUI.Xhs.Core/01-home/03-property/HomeXhsProjectPropertyCtrl.cs
@@ -3,6 +3,7 @@
using DevExpress.XtraEditors.Repository;
using DevExpress.XtraLayout.Utils;
using DevExpress.XtraVerticalGrid.Events;
using HStation.Vmo;
namespace HStation.WinFrmUI
{
@@ -19,7 +20,7 @@
        /// <summary>
        /// 跳转事件
        /// </summary>
        public event Action<XhsProjectStdDto> JumpDirectEvent;
        public event Action<long> JumpDirectEvent;
        /// <summary>
        /// 绑定对象
@@ -245,7 +246,7 @@
            {
                return;
            }
            JumpDirectEvent?.Invoke(this.SelectedObject.Project);
            JumpDirectEvent?.Invoke(this.SelectedObject.Project.ID);
        }
    }
}