我正在尝试使用here中的HookManager监视我的按键,并根据我的按键在键盘上执行自定义的LED操作。
我用以下代码创建了一个测试程序。这是一个WinForm项目,可以正常运行:
using Gma.UserActivityMonitor;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApp1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
HookManager.KeyDown += new KeyEventHandler(HookManager_KeyDown);
}
private void HookManager_KeyDown(object sender, KeyEventArgs e)
{
//MessageBox.Show("Hello");
//My custom LED code
}
}
}
这可以正常工作,并且可以实现我想要的功能,但是当我尝试将其转换为服务时,它永远不会进入HookManager_KeyDown函数。这是我的服务:
using LedCSharp;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Runtime.Serialization.Formatters.Binary;
using System.ServiceProcess;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace MyService
{
public partial class MyService: ServiceBase
{
public MyService()
{
InitializeComponent();
}
protected override void OnStart(string[] args)
{
HookManager.KeyDown += new KeyEventHandler(HookManager_KeyDown);
}
private void HookManager_KeyDown(object sender, KeyEventArgs e)
{
//My custom LED code
}
}
}
在添加事件处理程序时,我已经设置了断点,并且没有抛出任何错误。当我在KeyDown函数中放置断点时,它永远不会被击中。我已经尝试了其他代码,例如写入EventLog,以确保断点不是问题,但我放过的代码都不会运行。
我不确定该怎么做,因为我不确定HookManager代码是如何工作的,但是将其添加到WinForm项目中非常容易,但是在我的服务中却行不通。