一、快捷键帮助类设计初衷
在C#项目的的开发过程中,需要涉及到使用一些快捷键方便项目内容的快速操作使用,就需要设计一个快捷键帮助类能够快速方便的实现快捷键功能,提高开发效率。
二、快捷键帮助类的功能
* 功能:
* 1、热键组合
* 2、注册快捷键
* 3、卸载快捷键
三、快捷键帮助类
3.1、快捷键帮助类
/***
* Title:"基础工具" 项目
* 主题:快捷键帮助类
* Description:
* 功能:
* 1、热键组合
* 2、注册快捷键
* 3、卸载快捷键
* Date:2022
* Version:0.1版本
* Author:XXX
* Modify Recoder:
*/
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 Utils
{
public class HotKeysHelper
{