• 大小: 1.83KB
    文件类型: .cs
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: 按键  定时  

资源简介

定时自动按键

资源截图

代码片段和文件信息

using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Runtime.InteropServices;
using System.Diagnostics;
using System.Collections;
using System.Windows.Forms;
using System.IO;
using System;
using System.Threading;

public class HotKeys
{
    //引入系统API
    [DllImport(“user32.dll“)]
    static extern bool RegisterHotKey(IntPtr hWnd int id int modifiers Keys vk);
    [DllImport(“user32.dll“)]
    static extern bool UnregisterHotKey(IntPtr hWnd int id);


    int keyid = 10;     //区分不同的快捷键
    Dictionary keymap = new Dictionary();   //每一个key对于一个处理函数
    public delegate void HotKeyCallBackHanlder();

    //组合控制键
    public enum HotkeyModifiers
    {
        Alt = 1
        Cont

评论

共有 条评论