// //设备异常重载 // 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); }
2022-08-29 09:55:18
// //设备异常重载 // 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); }