本文介绍了如何将可用的串行端口添加到Combobox?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

请问如何将可用端口添加到我的组合框???

Hi,Please how can i add available ports to my combobox???

推荐答案

string[] ports = SerialPort.GetPortNames();



参考: []



如果你仍然想知道如何将这个结果添加到你的组合框中,你可以尝试类似的事情 -


Reference: SerialPort.GetPortNames Method ()[^]

If you still want to know, how this result can be added to your combobox, you can try something like-

myComboBox.DataSource = ports;
myComboBox.DataBind();





希望,它有帮助:)



Hope, it helps :)



这篇关于如何将可用的串行端口添加到Combobox?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-12 22:26