列出可用的COM端口

时间:2011-03-26 22:42:56

标签: c# windows forms

我有一个非常小的代码,显示可用的COM端口。

我的问题是:

是否有一种简单的方法让程序在托盘中运行,只有在新的COM端口可用时弹出,并且可以添加COM端口的名称,您可以在设备管理器ec中看到“USB serial端口“?

我经常添加/删除一个USB-> RS232转换器并发现它很麻烦,因为我必须进入设备管理器才能看到它分配给哪个COM端口。每次都不一样

也许已经有一个小应用程序可以做到这一点,但我还没有在谷歌上找到它

using System;
using System.Windows.Forms;
using System.IO.Ports;

namespace Available_COMports

{
    public partial class Form1 : Form
    {
        public Form1()
    {
        InitializeComponent();

        //show list of valid com ports
        foreach (string s in SerialPort.GetPortNames())
        {
            listBox1.Items.Add(s);
        }  
    }

    private void Form1_Load(object sender, EventArgs e)
    {
    }

    private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
    {
    }
}

}

4 个答案:

答案 0 :(得分:9)

 public static void Main()
    {
        // Get a list of serial port names.
        string[] ports = SerialPort.GetPortNames();

        Console.WriteLine("The following serial ports were found:");

        // Display each port name to the console.
        foreach(string port in ports)
        {
            Console.WriteLine(port);
        }

        Console.ReadLine();
    }

答案 1 :(得分:7)

看看this question。它使用WMI查找可用的COM端口。您可以跟踪存在的COM端口,并仅通知新端口。

答案 2 :(得分:5)

要了解设备是否已热插拔,您需要处理WM_DEVICECHANGE。致电RegisterDeviceNotification以启用这些通知的传递。

答案 3 :(得分:0)

获取某个设备的COM编号的代码。

List<USBDeviceInfo> devices = new List<USBDeviceInfo>();
ManagementObjectSearcher searcher =
    new ManagementObjectSearcher("root\\CIMV2",
    "SELECT * FROM Win32_PnPEntity");
foreach (ManagementObject queryObj in searcher.Get())
{
    devices.Add(new USBDeviceInfo(
        (string)queryObj["DeviceID"],
        (string)queryObj["PNPDeviceID"],
        (string)queryObj["Name"]
    ));
}

foreach (USBDeviceInfo usbDevice in devices)
{
    if (usbDevice.Description != null)
    {
        if (usbDevice.Description.Contains("NAME OF Device You are Looking for")) //use your own device's name
        {
            int i = usbDevice.Description.IndexOf("COM");
            char[] arr = usbDevice.Description.ToCharArray();
            str = "COM" + arr[i + 3];
            if (arr[i + 4] != ')')
            {
                str += arr[i + 4];
            }
            break;
        }
    }
}

mySerialPort = new SerialPort(str);