本文介绍了如何将所有串行端口(com)绑定到客户端计算机中的下拉列表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述





我想将计算机的所有串口绑定到下拉列表

为此,我编写的代码为



 string [] ports = System.IO.Ports.SerialPort.GetPortNames(); 

for(int i = 0; i< ports.Length; i ++)
{
Dropdownlist1.Items.Add(ports [i]);
}





我的代码将部署在服务器上,我想将所有串口连接到客户端机器不是服务器。



以上代码是否适合我。

解决方案

Hi,

I want to bind all serial port of the computer to dropdownlist
For this i have written code as

string[] ports = System.IO.Ports.SerialPort.GetPortNames();

       for (int i = 0; i < ports.Length; i++)
       {
           Dropdownlist1.Items.Add(ports[i]);
       }



My code will be deployed on the server ,i want to get all serial port connected to client machine not of the server .

Will the above code will work for me.

解决方案


这篇关于如何将所有串行端口(com)绑定到客户端计算机中的下拉列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-15 18:35