c#中设置快捷键

时间:2021-05-31 20:14:29 

最近找了一些资料,是讲在C#中设置快捷键运行方法或程序的

要设置快捷键必须使用user32.dll下面的两个方法。

BOOL RegisterHotKey(
HWND hWnd,
int id,
UINT fsModifiers,
UINT vk
); 



BOOL UnregisterHotKey(
HWND hWnd,
int id
); 
转换成C#代码,那么首先就要引用命名空间System.Runtime.InteropServices;来加载非托管类user32.dll。于是有了:

[DllImport("user32.dll", SetLastError=true)] 
public static extern bool RegisterHotKey(
IntPtr hWnd, // handle to window 
int id, // hot key identifier 
KeyModifiers fsModifiers, // key-modifier options 
Keys vk // virtual-key code 
); 

[DllImport("user32.dll", SetLastError=true)] 
public static extern bool UnregisterHotKey(
IntPtr hWnd, // handle to window 
int id // hot key identifier 
);

[Flags()] 
public enum KeyModifiers 

None = 0, 
Alt = 1, 
Control = 2, 
Shift = 4, 
Windows = 8 


这是注册和卸载全局快捷键的方法,那么我们只需要在Form_Load的时候加上注册快捷键的语句,在FormClosing的时候卸载全局快捷键。同时,为了保证剪贴板的内容不受到其他程序调用剪贴板的干扰,在Form_Load的时候,我先将剪贴板里面的内容清空。

于是有了:

private void Form1_Load(object sender, System.EventArgs e)
{
label2.AutoSize = true;

Clipboard.Clear();//先清空剪贴板防止剪贴板里面先复制了其他内容
RegisterHotKey(Handle, 100, 0, Keys.F10);
}

private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
UnregisterHotKey(Handle, 100);//卸载快捷键


那么我们在别的窗口,怎么让按了快捷键以后调用我的主过程ProcessHotkey()呢?

那么我们就必须重写WndProc()方法,通过监视系统消息,来调用过程:

protected override void WndProc(ref Message m)//监视Windows消息
{
const int WM_HOTKEY = 0x0312;//按快捷键
switch (m.Msg)
{
case WM_HOTKEY:
ProcessHotkey();//调用主处理程序
break;
}
base.WndProc(ref m);

标签:c#中设置快捷键
0
投稿

猜你喜欢

  • C#使用for循环移除HTML标记

    2022-02-02 08:35:23
  • 深入浅析Java 抽象类和接口

    2022-12-17 19:19:27
  • Android仿人人客户端滑动菜单的侧滑菜单效果

    2021-06-01 08:07:06
  • java判断中文字符串长度的简单实例

    2022-12-19 09:00:26
  • C#通过创建Windows服务启动程序的方法详解

    2022-09-16 15:32:49
  • C#路径,文件,目录及IO常见操作汇总

    2022-05-03 21:21:13
  • Silverlight将图片转换为byte的实现代码

    2022-03-07 11:07:15
  • 协定需要会话,但是绑定“BasicHttpBinding”不支持它或者因配置不正确而无法支持它

    2023-03-17 16:44:34
  • Android巧用XListView实现万能下拉刷新控件

    2023-07-25 00:33:03
  • Android对图片Drawable实现变色示例代码

    2021-11-25 15:49:47
  • SpringBoot获取配置文件内容的几种方式总结

    2023-11-24 18:10:48
  • Android实现仿iOS菊花加载圈动画效果

    2023-08-19 12:57:41
  • IDEA如何进行全局搜索图文教程

    2022-10-14 13:39:45
  • WPF实现控件拖动的示例代码

    2023-04-01 09:36:15
  • Spring session 获取当前账户登录数的实例代码

    2022-10-17 10:02:05
  • 关于ObjectUtils.isEmpty() 和 null 的区别

    2022-05-07 17:10:56
  • Android进程运行中权限被收回导致关闭的问题解决

    2023-11-21 16:56:45
  • android选择视频文件上传到后台服务器

    2023-06-11 22:50:44
  • C#导出pdf的实现方法(浏览器不预览直接下载)

    2023-11-04 05:48:10
  • 你什么是Elastic Stack(ELK)

    2022-12-02 20:12:43
  • asp之家 软件编程 m.aspxhome.com