c#中如何定义热键,即无论何时按下热键就可以接收到

日期:2021-12-29 17:28:29 人气:1

c#中如何定义热键,即无论何时按下热键就可以接收到

C#中要使用WINDOWS API RegisterHotKey来使用全局热键,以下给出一个实现注册热键的类。
(1)建立一个类文件,命名为HotKey.cs,代码如下:
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Windows.Forms;
namespace KoalaStudio.Bo
    A+
热门评论