using System.Windows.Input;
using GlobalHotKey;
namespace BrilliantSightClient.Model.Helper;
public class ClientHotKeys
{
///
/// 快速开始检测
///
public static readonly HotKey QuickAnewDetectHotKey = new HotKey(Key.Q, ModifierKeys.Control | ModifierKeys.Alt);
///
/// 关闭检测结果页
///
public static readonly HotKey CloseResultHotKey = new HotKey(Key.E, ModifierKeys.Control | ModifierKeys.Alt);
///
/// 检测结果页 切换详细数据页和数据模型页
///
public static readonly HotKey SwitchPagesHotKey = new HotKey(Key.D1, ModifierKeys.Control);
///
/// 心箭图渲染
///
public static readonly HotKey ArrowAndHeartHotKey = new HotKey(Key.D2, ModifierKeys.Control);
}