using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Rs.Framework
{
///
/// 热键管理类
///
public class HotKeyManager
{
private const int MOD_ALT = 0x0001; // Alt键
private const int MOD_CTRL = 0x0002; // Ctrl键
private const int MOD_SHIFT = 0x0004; // Shift键
private const int MOD_WIN = 0x0008; // Windows键
private const int WM_HOTKEY = 0x0312;
private Action