You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AutoHotInterception/C#/TestApp/KeyboardTester.cs

28 lines
647 B
C#

using System;
using AutoHotInterception;
using TestApp.Helpers;
namespace TestApp
{
public class KeyboardTester
{
public KeyboardTester(TestDevice device, bool block = false)
{
var im = new Manager();
var devId = device.GetDeviceId();
if (devId == 0) return;
im.SubscribeKeyboard(devId, block, new Action<ushort, int>(OnKeyEvent));
}
public void OnKeyEvent(ushort code, int value)
{
var keyObj = AhkKeys.Obj(code);
Console.WriteLine($"Name: {keyObj.Name}, Code: {keyObj.LogCode()}, State: {value}");
}
}
}