资源简介

用C#编写的一个串口调试助手,通讯端口可选,波特率可调,校验方式可选

资源截图

代码片段和文件信息

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;

namespace SerialPort1
{
    public partial class Form1 : Form
    {
        SerialPort sp = null;
        bool isOpen = false;
        bool isSetProperty = false;

        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender EventArgs e)
        {
            this.MaximumSize = this.Size;
            this.MinimumSize = this.Size;
            this.MaximizeBox = false;                
            //列出常用的波特率
            cbxBaudRate.Items.Add(“300“);
            cbxBaudRate.Items.Add(“600“);
   

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2011-02-19 19:02  SerialPort\
     目录           0  2011-02-19 19:02  SerialPort\SerialPort1\
     文件         875  2010-05-29 13:37  SerialPort\SerialPort1.sln
     文件       18944  2010-11-20 00:00  SerialPort\SerialPort1.suo
     目录           0  2011-02-19 19:02  SerialPort\SerialPort1\bin\
     目录           0  2011-02-19 19:02  SerialPort\SerialPort1\bin\Debug\
     文件       15360  2010-11-20 00:00  SerialPort\SerialPort1\bin\Debug\SerialPort1.exe
     文件       34304  2010-11-20 00:00  SerialPort\SerialPort1\bin\Debug\SerialPort1.pdb
     文件       11600  2010-11-20 00:00  SerialPort\SerialPort1\bin\Debug\SerialPort1.vshost.exe
     文件         490  2010-03-17 22:39  SerialPort\SerialPort1\bin\Debug\SerialPort1.vshost.exe.manifest
     文件        7018  2010-05-29 18:03  SerialPort\SerialPort1\Form1.cs
     文件       13420  2010-05-29 15:52  SerialPort\SerialPort1\Form1.Designer.cs
     文件        5817  2010-05-29 15:52  SerialPort\SerialPort1\Form1.resx
     目录           0  2011-02-19 19:02  SerialPort\SerialPort1\obj\
     目录           0  2011-02-19 19:02  SerialPort\SerialPort1\obj\x86\
     目录           0  2011-02-19 19:02  SerialPort\SerialPort1\obj\x86\Debug\
     文件        4440  2010-07-13 16:53  SerialPort\SerialPort1\obj\x86\Debug\DesignTimeResolveAssemblyReferences.cache
     文件        6298  2010-11-20 00:00  SerialPort\SerialPort1\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache
     文件         642  2010-11-20 00:00  SerialPort\SerialPort1\obj\x86\Debug\GenerateResource.read.1.tlog
     文件        1514  2010-11-20 00:00  SerialPort\SerialPort1\obj\x86\Debug\GenerateResource.write.1.tlog
     文件        1919  2010-11-20 00:00  SerialPort\SerialPort1\obj\x86\Debug\SerialPort1.csproj.FileListAbsolute.txt
     文件       15360  2010-11-20 00:00  SerialPort\SerialPort1\obj\x86\Debug\SerialPort1.exe
     文件         180  2010-11-20 00:00  SerialPort\SerialPort1\obj\x86\Debug\SerialPort1.Form1.resources
     文件       34304  2010-11-20 00:00  SerialPort\SerialPort1\obj\x86\Debug\SerialPort1.pdb
     文件         180  2010-11-20 00:00  SerialPort\SerialPort1\obj\x86\Debug\SerialPort1.Properties.Resources.resources
     目录           0  2010-05-29 13:37  SerialPort\SerialPort1\obj\x86\Debug\TempPE\
     文件         503  2010-05-29 13:37  SerialPort\SerialPort1\Program.cs
     目录           0  2011-02-19 19:02  SerialPort\SerialPort1\Properties\
     文件        1434  2010-05-29 13:37  SerialPort\SerialPort1\Properties\AssemblyInfo.cs
     文件        2848  2010-05-29 13:37  SerialPort\SerialPort1\Properties\Resources.Designer.cs
     文件        5612  2010-05-29 13:37  SerialPort\SerialPort1\Properties\Resources.resx
............此处省略3个文件信息

评论

共有 条评论