首页 > 代码库 > C#检测串口被拔掉

C#检测串口被拔掉

        //        //设备异常重载        //                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);        }

 

C#检测串口被拔掉