FastHotKeyForWPF 4.0.0
.NET 5.0
This package targets .NET 5.0. The package is compatible with this framework or higher.
.NET Framework 4.6.2
This package targets .NET Framework 4.6.2. The package is compatible with this framework or higher.
dotnet add package FastHotKeyForWPF --version 4.0.0
NuGet\Install-Package FastHotKeyForWPF -Version 4.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="FastHotKeyForWPF" Version="4.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="FastHotKeyForWPF" Version="4.0.0" />
<PackageReference Include="FastHotKeyForWPF" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add FastHotKeyForWPF --version 4.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: FastHotKeyForWPF, 4.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=FastHotKeyForWPF&version=4.0.0
#tool nuget:?package=FastHotKeyForWPF&version=4.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
FastHotKeyForWPF 🚀
<a name="中文"></a>
中文版
简介 📖
用优雅的方式构建WPF热键功能,支持全局/本地热键注册、可视化控件、源码生成器等特性
版本矩阵 📦
版本 | 类型 | 目标框架 | 特性 |
---|---|---|---|
2.4.0 | LTS | .NET 6 | 非源码生成器 |
3.0.0 | LTS | .NET 5 / .NET Framework 4.7.1 | 基础功能 |
4.0.0 | LTS | .NET 5 / .NET Framework 4.6.2 | 统一API |
最新特性 ✨
- 统一API - 跨框架一致的操作体验
- 增强注销 - 返回成功注销的热键数量
- 源码生成器 - 支持.NET Framework(需手动配置)
- 文档升级 - 新增函数原型速查表
快速开始 🚀
Ⅰ 代码注册热键
// 全局热键(任意窗口生效)
GlobalHotKey.Register(
VirtualModifiers.Ctrl | VirtualModifiers.Alt,
VirtualKeys.F1,
(sender, e) => MessageBox.Show("全局热键触发!")
);
// 本地热键(指定控件生效)
LocalHotKey.Register(
textBox1,
new[] { Key.LeftCtrl, Key.K, Key.D },
(sender, e) => textBox1.Text = "Ctrl+K+D 已触发"
);
Ⅱ 可视化热键控件
- 创建自定义控件(自动生成热键逻辑)
[HotKeyComponent]
public partial class HotKeyBox : UserControl
{
// 控件交互逻辑...
}
- XAML绑定热键属性
<TextBox KeyDown="OnHotKeyReceived"
Text="{Binding HotkeyText, RelativeSource={RelativeSource AncestorType=local:HotKeyBox}}"/>
核心API 🔧
GlobalHotKey
方法 | 说明 |
---|---|
Awake() |
初始化热键系统 |
Register(modifiers, keys) |
注册全局热键 |
Unregister(modifiers, keys) |
注销全局热键 |
Dispose() |
释放所有热键资源 |
LocalHotKey
方法 | 说明 |
---|---|
Register(target, keys) |
注册控件级热键 |
Unregister(target) |
注销控件所有热键 |
RegisterMainWindow(keys) |
注册主窗口级热键 |
UnregisterMainWindow() |
注销主窗口所有热键 |
完整文档 📚
<a name="english"></a>
English Version
Introduction 📖
Elegant hotkey implementation for WPF, featuring global/local registration, visual controls, and source generators.
Version Matrix 📦
Version | Type | Target Frameworks | Features |
---|---|---|---|
2.4.0 | LTS | .NET 6 | Non-SourceGen |
3.0.0 | LTS | .NET 5 / .NET Framework 4.7.1 | Basic Features |
4.0.0 | LTS | .NET 5 / .NET Framework 4.6.2 | Unified API |
Highlights ✨
- Unified API - Consistent cross-framework experience
- Enhanced Unregister - Returns success count
- Source Generator - .NET Framework support (manual config)
- Documentation - Added function prototypes quick reference
Quick Start 🚀
Ⅰ Code Registration
// Global hotkey (works system-wide)
GlobalHotKey.Register(
VirtualModifiers.Ctrl | VirtualModifiers.Alt,
VirtualKeys.F1,
(sender, e) => MessageBox.Show("Global Hotkey Triggered!")
);
// Local hotkey (control-specific)
LocalHotKey.Register(
textBox1,
new[] { Key.LeftCtrl, Key.K, Key.D },
(sender, e) => textBox1.Text = "Ctrl+K+D Activated"
);
Ⅱ Visual Control
- Create custom control (auto-generated logic)
[HotKeyComponent]
public partial class HotKeyBox : UserControl
{
// Control interactions...
}
- XAML Data Binding
<TextBox KeyDown="OnHotKeyReceived"
Text="{Binding HotkeyText, RelativeSource={RelativeSource AncestorType=local:HotKeyBox}}"/>
Core API 🔧
GlobalHotKey
Method | Description |
---|---|
Awake() |
Initialize hotkey system |
Register(modifiers, keys) |
Register global hotkey |
Unregister(modifiers, keys) |
Unregister global hotkey |
Dispose() |
Release all hotkey resources |
LocalHotKey
Method | Description |
---|---|
Register(target, keys) |
Register control-level hotkey |
Unregister(target) |
Unregister all control hotkeys |
RegisterMainWindow(keys) |
Register mainwindow-level hotkeys |
UnregisterMainWindow() |
Clear main window hotkeys |
Full Documentation 📚
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0-windows7.0 is compatible. net6.0-windows was computed. net7.0-windows was computed. net8.0-windows was computed. net9.0-windows was computed. |
.NET Framework | net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETFramework 4.6.2
- FastHotKeyForWPF.Generator (>= 1.4.0)
-
net5.0-windows7.0
- FastHotKeyForWPF.Generator (>= 1.4.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.