C#获取USB事件API实例分析
时间:2022-02-07 10:11:09|栏目:.NET代码|点击: 次
本文实例讲述了C#获取USB事件API。分享给大家供大家参考。具体如下:
const int WM_DEVICECHANGE = 0x2190; const int DBT_DEVICEARRIVAL = 0x8000; const int DBT_DEVICEREMOVECOMPLETE = 0x8004; protected override void WndProc(ref Message m) { try { //if (m.Msg == WM_DEVICECHANGE) //{ switch (m.WParam.ToInt32()) { case DBT_DEVICEARRIVAL: // U盘插入 DriveInfo[] s = DriveInfo.GetDrives(); foreach (DriveInfo drive in s) { if (drive.DriveType == DriveType.Removable) { Console.WriteLine("USB插入"); break; } } break; case DBT_DEVICEREMOVECOMPLETE: //U盘卸载 // Console.WriteLine("USB卸载"); break; default: break; } //} } catch (Exception ex) { MessageBox.Show(ex.Message); } base.WndProc(ref m); }
希望本文所述对大家的C#程序设计有所帮助。
上一篇:Unity 按钮事件封装操作(EventTriggerListener)
栏 目:.NET代码
下一篇:Win2008 server + IIS7 设置身份模拟(ASP.NET impersonation)
本文标题:C#获取USB事件API实例分析
本文地址:http://www.codeinn.net/misctech/192664.html