日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

检测USB插拔源码C#

發(fā)布時間:2024/1/1 46 豆豆
生活随笔 收集整理的這篇文章主要介紹了 检测USB插拔源码C# 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
using System;? using System.Collections.Generic;? using System.ComponentModel;? using System.Data;? using System.Drawing;? using System.Linq;? using System.Text;? using System.Threading.Tasks;? using System.Windows.Forms;? using System.IO;? //添加IO命名空間? namespace CheckUdisk? {? public partial class Form1 : Form? {? //定義常量? public const int WM_DEVICECHANGE = 0x219;? public const int DBT_DEVICEARRIVAL = 0x8000;? public const int DBT_CONFIGCHANGECANCELED = 0x0019;? public const int DBT_CONFIGCHANGED = 0x0018;? public const int DBT_CUSTOMEVENT = 0x8006;???????????? public const int DBT_DEVICEQUERYREMOVE = 0x8001;? public const int DBT_DEVICEQUERYREMOVEFAILED = 0x8002;? public const int DBT_DEVICEREMOVECOMPLETE = 0x8004;? public const int DBT_DEVICEREMOVEPENDING = 0x8003;? public const int DBT_DEVICETYPESPECIFIC = 0x8005;? public const int DBT_DEVNODES_CHANGED = 0x0007;? public const int DBT_QUERYCHANGECONFIG = 0x0017;? public const int DBT_USERDEFINED = 0xFFFF;? public Form1()? {? InitializeComponent();? }? private void Form1_Load(object sender, EventArgs e)? {? }? protected override void WndProc(ref Message m)? {? try? {? if (m.Msg == WM_DEVICECHANGE)? {? switch (m.WParam.ToInt32())? {? case WM_DEVICECHANGE:? break;? case DBT_DEVICEARRIVAL:? DriveInfo[] s = DriveInfo.GetDrives();? foreach (DriveInfo drive in s)? {? if (drive.DriveType == DriveType.Removable)? {? this.richTextBox1.AppendText("U盤已插入,盤符是" + drive.Name.ToString() + "\r\n");? break;? }? }? break;? case DBT_CONFIGCHANGECANCELED:? MessageBox.Show("2");? break;? case DBT_CONFIGCHANGED:? MessageBox.Show("3");? break;? case DBT_CUSTOMEVENT:? MessageBox.Show("4");? break;? case DBT_DEVICEQUERYREMOVE:? MessageBox.Show("5");? break;? case DBT_DEVICEQUERYREMOVEFAILED:? MessageBox.Show("6");? break;? case DBT_DEVICEREMOVECOMPLETE:? this.richTextBox1.AppendText("U盤已卸載");? break;? case DBT_DEVICEREMOVEPENDING:? MessageBox.Show("7");? break;? case DBT_DEVICETYPESPECIFIC:? MessageBox.Show("8");? break;? case DBT_DEVNODES_CHANGED:? MessageBox.Show("9");? break;? case DBT_QUERYCHANGECONFIG:? MessageBox.Show("10");? break;? case DBT_USERDEFINED:? MessageBox.Show("11");? break;? default:? break;? }? }? }? catch (Exception ex)? {? MessageBox.Show(ex.Message);? }? base.WndProc(ref m);? }? }? }

總結(jié)

以上是生活随笔為你收集整理的检测USB插拔源码C#的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。