标签:
// //设备异常重载 // protected override void WndProc(ref Message m) { if (m.Msg == 0x0219) {//设备被拔出 if (m.WParam.ToInt32() == 0x8004)//usb串口 { //if (对串口进行操作) //{//产生异常 // 关闭串口 //} MessageBox.Show("USB转串口拔出"); } } base.WndProc(ref m); }
标签:
原文地址:http://www.cnblogs.com/fx427103/p/4254088.html