gpt4 book ai didi

c# - 如何在没有 Windows 窗体的情况下接收即插即用设备通知

转载 作者:IT王子 更新时间:2023-10-29 04:08:02 25 4
gpt4 key购买 nike

我正在尝试编写一个类库,它可以捕获 Windows 消息以在设备已连接或移除时通知我。通常,在 Windows 窗体应用程序中,我只会覆盖 WndProc 方法,但在这种情况下没有 WndProc 方法。我可以通过其他方式获取消息吗?

最佳答案

你需要一个窗口,没有办法绕过它。这是一个示例实现。为 DeviceChangeNotifier.DeviceNotify 事件实现事件处理程序以获取通知。在程序开始时调用 DeviceChangeNotifier.Start() 方法。在程序结束时调用 DeviceChangeNotifier.Stop()。请注意 DeviceNotify 事件是在后台线程上引发的,请确保根据需要锁定以保持代码线程安全。

using System;
using System.Windows.Forms;
using System.Threading;

class DeviceChangeNotifier : Form {
public delegate void DeviceNotifyDelegate(Message msg);
public static event DeviceNotifyDelegate DeviceNotify;
private static DeviceChangeNotifier mInstance;

public static void Start() {
Thread t = new Thread(runForm);
t.SetApartmentState(ApartmentState.STA);
t.IsBackground = true;
t.Start();
}
public static void Stop() {
if (mInstance == null) throw new InvalidOperationException("Notifier not started");
DeviceNotify = null;
mInstance.Invoke(new MethodInvoker(mInstance.endForm));
}
private static void runForm() {
Application.Run(new DeviceChangeNotifier());
}

private void endForm() {
this.Close();
}
protected override void SetVisibleCore(bool value) {
// Prevent window getting visible
if (mInstance == null) CreateHandle();
mInstance = this;
value = false;
base.SetVisibleCore(value);
}
protected override void WndProc(ref Message m) {
// Trap WM_DEVICECHANGE
if (m.Msg == 0x219) {
DeviceNotifyDelegate handler = DeviceNotify;
if (handler != null) handler(m);
}
base.WndProc(ref m);
}
}

关于c# - 如何在没有 Windows 窗体的情况下接收即插即用设备通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2061167/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com