C#控制键盘按键(大小写按键等)

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
 
namespace sn设置键盘大小写
{
    public partial class Form1 : Form
    {
        const uint KEYEVENTF_EXTENDEDKEY = 0x1;
        const uint KEYEVENTF_KEYUP = 0x2;
 
        [DllImport("user32.dll")]
        static extern short GetKeyState(int nVirtKey);
        [DllImport("user32.dll")]
        static extern void keybd_event(byte bVk, byte bScan, uint dwFlags, uint dwExtraInfo);
 
        public enum VirtualKeys : byte
        {
            VK_NUMLOCK = 0x90, //数字锁定键
            VK_SCROLL = 0x91,  //滚动锁定
            VK_CAPITAL = 0x14, //大小写锁定
            VK_A = 62
        }
 
        public Form1()
        {
            InitializeComponent();
        }
 
        public static bool GetState(VirtualKeys Key)
        {
            return (GetKeyState((int)Key)==1);
        }
        public static void SetState(VirtualKeys Key, bool State)
        {
            if (State != GetState(Key))
            {
                keybd_event((byte)Key, 0x45, KEYEVENTF_EXTENDEDKEY | 0, 0);
                keybd_event((byte)Key, 0x45, KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, 0);
            }
        }
 
        //开启键盘大写
        private void btnOpenCAPITAL_Click(object sender, EventArgs e)
        {
            SetState(VirtualKeys.VK_CAPITAL, true);
        }
 
        //关闭键盘大写
        private void btnCloseCAPITAL_Click(object sender, EventArgs e)
        {
            SetState(VirtualKeys.VK_CAPITAL, false);
        }
 
        //开启键盘滚动锁定
        private void btnOpenScroll_Click(object sender, EventArgs e)
        {
            SetState(VirtualKeys.VK_SCROLL, true);
        }
 
        //关闭键盘滚动锁定
        private void btnCloseScroll_Click(object sender, EventArgs e)
        {
            SetState(VirtualKeys.VK_SCROLL, false);
        }
 
        //开启键盘数字锁定键
        private void btnOpenNum_Click(object sender, EventArgs e)
        {
            SetState(VirtualKeys.VK_NUMLOCK, true);
        }
 
        //关闭键盘数字锁定键
        private void btnCloseNum_Click(object sender, EventArgs e)
        {
            SetState(VirtualKeys.VK_NUMLOCK, false);
        }
 
    }
}