You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
845 B
24 lines
845 B
using System.Windows.Input; |
|
using GlobalHotKey; |
|
|
|
namespace BrilliantSightClient.Model.Helper; |
|
|
|
public class ClientHotKeys |
|
{ |
|
/// <summary> |
|
/// 快速开始检测 |
|
/// </summary> |
|
public static readonly HotKey QuickAnewDetectHotKey = new HotKey(Key.Q, ModifierKeys.Control | ModifierKeys.Alt); |
|
/// <summary> |
|
/// 关闭检测结果页 |
|
/// </summary> |
|
public static readonly HotKey CloseResultHotKey = new HotKey(Key.E, ModifierKeys.Control | ModifierKeys.Alt); |
|
/// <summary> |
|
/// 检测结果页 切换详细数据页和数据模型页 |
|
/// </summary> |
|
public static readonly HotKey SwitchPagesHotKey = new HotKey(Key.D1, ModifierKeys.Control); |
|
/// <summary> |
|
/// 心箭图渲染 |
|
/// </summary> |
|
public static readonly HotKey ArrowAndHeartHotKey = new HotKey(Key.D2, ModifierKeys.Control); |
|
} |