使用C#注册全局快捷键

天试了一下这个, 记录下来, 以后我给自己做小工具时, 肯定用的到.

 

注册/注销全局快捷键需要用user32.dll中的这两个api:

RegisterHotKey

UnregisterHotKey

所以使用C#注册全局快捷键就是要用C#调用user32.dll中的这两个函数,

 

问题1 C#调用dll

这其中涉及的问题有:

1.为了使用[DllImport("user32.dll")], 要先using System.Runtime.InteropServices;

2.import的函数要用static extern来修饰.

 

关于C#调用dll的介绍可以参考下面这几个链接:

 

在 C# 中通过 P/Invoke 调用Win32 DLL

Calling Win32 DLLs in C# with P/Invoke

这两个link一个是中文版, 一个是英文版, 还有代码示例可以下载. 其中还有个类型映射表, 比较有帮助.

这些都是基本类型, 指针的后面有说明.


Win32 TypesSpecificationCLR Type
char, INT8, SBYTE, CHAR†8-bit signed integerSystem.SByte
short, short int, INT16, SHORT16-bit signed integerSystem.Int16
int, long, long int, INT32, LONG32, BOOL†, INT 32-bit signed integerSystem.Int32
__int64, INT64, LONGLONG64-bit signed integerSystem.Int64
unsigned char, UINT8, UCHAR†, BYTE8-bit unsigned integerSystem.Byte
unsigned short, UINT16, USHORT, WORD, ATOM, WCHAR†, __wchar_t16-bit unsigned integerSystem.UInt16
unsigned, unsigned int, UINT32, ULONG32, DWORD32, ULONG, DWORD, UINT32-bit unsigned integerSystem.UInt32
unsigned __int64, UINT64, DWORDLONG, ULONGLONG64-bit unsigned integerSystem.UInt64
float, FLOATSingle-precision floating pointSystem.Single
double, long double, DOUBLEDouble-precision floating pointSystem.Double
†In Win32 this type is an integer with a specially assigned meaning; in contrast, the CLR provides a specific type devoted to this meaning.

 

还有这几篇也不错

暴强贴:从.NET平台调用Win32 API

Platform Invoke Tutorial

 

 

问题2:  注册/注销全局快捷键

C#封装得真是很简单, 得到一个窗口的句柄只需要对Form调用this.Handle即可.

 

具体实现可以参考下面这两篇帖子:

C#注册全局热键

在c#中使用全局快捷键

 

附件是在第二个帖子基础上写的代码,他对dll中导入的api又做了一次封装, vs2008的工程.

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值