博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Winform 串口相关
阅读量:5955 次
发布时间:2019-06-19

本文共 442 字,大约阅读时间需要 1 分钟。

 

查找当前电脑上有哪些串口

 

using System.IO;
using System.IO.Ports;
  
private 
void button1_Click(
object sender, EventArgs e)
        {
            
//
用以下方法知道此
            
//
方法一:comboBox1.Items.AddRange(System.IO.Ports.SerialPort.GetPortNames());  
            
//
方法二: 
            
string[] portList = System.IO.Ports.SerialPort.GetPortNames();
            
for (
int i = 
0; i < portList.Length; ++i)
            {
                
string name = portList[i];
                comboBox1.Items.Add(name);
            }
        }

 

转载于:https://www.cnblogs.com/tiger8000/archive/2011/12/27/2303073.html

你可能感兴趣的文章
centos crontab环境变量问题
查看>>
Android视频播放
查看>>
Linux curl命令简介
查看>>
Pure-Ftp:基于虚拟账号的FTP服务器
查看>>
让你的spring-boot应用日志随心所欲--spring boot日志深入分析
查看>>
mysql乱码问题的解决方案
查看>>
win 2008 64位IIS7出现数据库链接出错的解决办法
查看>>
zabbix3.0.3-源码安装
查看>>
nginx的安装与配置
查看>>
推荐-关于职业规划
查看>>
nginx+apache实现负载均衡+动静分离配置(编译安装)
查看>>
修复群集无法切换磁盘问题
查看>>
expdp 详解及实例
查看>>
洛谷——P1495 曹冲养猪
查看>>
C++中 栈的简单封装
查看>>
我的友情链接
查看>>
Linux常用命令--iconv
查看>>
varnish的了解与常用配置使用
查看>>
Product user profile information 没有导入
查看>>
DELL T410服务器U盘安装Centos7
查看>>