| | |
| | | using DevExpress.XtraBars; |
| | | using DevExpress.XtraEditors; |
| | | using DevExpress.XtraEditors.Repository; |
| | | using DevExpress.XtraLayout.Utils; |
| | | using DevExpress.XtraVerticalGrid.Events; |
| | | using HStation.Vmo; |
| | | |
| | | namespace HStation.WinFrmUI |
| | | { |
| | |
| | | /// <summary> |
| | | /// 跳转事件 |
| | | /// </summary> |
| | | public event Action<XhsProjectVmo> JumpDirectEvent; |
| | | public event Action<long> JumpDirectEvent; |
| | | |
| | | /// <summary> |
| | | /// 绑定对象 |
| | |
| | | { |
| | | return; |
| | | } |
| | | JumpDirectEvent?.Invoke(this.SelectedObject.Project); |
| | | JumpDirectEvent?.Invoke(this.SelectedObject.Project.ID); |
| | | } |
| | | } |
| | | } |