資源簡介
C# 串口調試程序 源碼下載,代碼中包括了一個串口開發輔助類,在這個類中幾乎包括了全部的串口調試操作功能,本程序也可以看作是圍繞這個串口調試類所編寫的實例,運行注意,請確保你的計算機中有串口,未掃描到該計算機的COM口,請添加硬件后重新打開程序!測試時的串口號,默認COM1,程序根據結束字節來判斷是否全部獲取完成。
代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.ComponentModel;
using?System.Data;
using?System.Drawing;
using?System.Linq;
using?System.Text;
using?System.Windows.Forms;
using?System.IO.Ports;
//Download?by?http://www.codefans.net
namespace?CShapeSerialPort
{
????public?partial?class?MainFrom?:?Form
????{
????????private?SerialPortUtil?comPort?=?new?SerialPortUtil();
????????private?System.Timers.Timer?timer?=?new?System.Timers.Timer();
????????public?MainFrom()
????????{
????????????InitializeComponent();
????????}
????????private?void?COMOpen()
????????{
????????????if?(!comPort.IsOpen)
????????????{
????????????????try
????????????????{
????????????????????comPort.OpenPort();
????????????????????btnOpenClose.Text?=?“關閉串口“;
??????????????????
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件???????4286??2012-08-27?14:31??C#?DemoCShapeSerialPort\CShapeSerialPort\1_vspdconfig.ico
?????文件???????3815??2012-08-27?14:33??C#?DemoCShapeSerialPort\CShapeSerialPort\CShapeSerialPort.csproj
?????文件???????9366??2013-08-24?22:47??C#?DemoCShapeSerialPort\CShapeSerialPort\MainFrom.cs
?????文件??????18015??2013-08-24?22:47??C#?DemoCShapeSerialPort\CShapeSerialPort\MainFrom.Designer.cs
?????文件??????12743??2012-08-30?15:39??C#?DemoCShapeSerialPort\CShapeSerialPort\MainFrom.resx
?????文件????????537??2013-08-24?22:48??C#?DemoCShapeSerialPort\CShapeSerialPort\Program.cs
?????文件???????1364??2012-08-25?14:02??C#?DemoCShapeSerialPort\CShapeSerialPort\Properties\AssemblyInfo.cs
?????文件???????2882??2012-08-25?14:02??C#?DemoCShapeSerialPort\CShapeSerialPort\Properties\Resources.Designer.cs
?????文件???????5612??2012-08-25?14:02??C#?DemoCShapeSerialPort\CShapeSerialPort\Properties\Resources.resx
?????文件???????1101??2012-08-25?14:02??C#?DemoCShapeSerialPort\CShapeSerialPort\Properties\Settings.Designer.cs
?????文件????????249??2012-08-25?14:02??C#?DemoCShapeSerialPort\CShapeSerialPort\Properties\Settings.settings
?????文件??????18161??2012-08-30?15:17??C#?DemoCShapeSerialPort\CShapeSerialPort\SerialPortUtil.cs
?????文件???????1036??2012-08-28?14:55??C#?DemoCShapeSerialPort\CShapeSerialPort.sln
?????目錄??????????0??2012-08-25?14:02??C#?DemoCShapeSerialPort\CShapeSerialPort\Properties
?????目錄??????????0??2013-08-24?22:47??C#?DemoCShapeSerialPort\CShapeSerialPort
?????目錄??????????0??2013-08-24?22:44??C#?DemoCShapeSerialPort
?????文件????????305??2017-09-13?10:33??新建文本文檔.txt
-----------?---------??----------?-----??----
????????????????79472????????????????????17
- 上一篇:CheckBox分組顏色標記等功能的下拉框
- 下一篇:c#編寫串口通訊代碼多線程實現
評論
共有 條評論