• 大小: 62KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-02-11
  • 语言: C#
  • 标签: Csharp  SerialPort  串口  

资源简介

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;
using System.IO.Ports;
using System.Threading;

namespace SerialPort
{
    public partial class Form1 : Form
    {
        static bool _continue;
        //static SerialPort _serialPort;
        enum BandRateEnum
        {
            BR4800 = 4800 BR7200 = 7200 BR9600 = 9600 BR14400 = 14400
            BR19200 = 19200 RB38400 = 38400 BR115200 = 115200
        };
        string sendm = ““;
        string recvm = ““;

        public Form1()
        {
            InitializeComponent();

            this.KeyPreview = true;
            this.KeyPress += new Key

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      11776  2010-07-31 21:51  SerialPort\SerialPort\bin\Debug\SerialPort.exe

     文件      28160  2010-07-31 21:51  SerialPort\SerialPort\bin\Debug\SerialPort.pdb

     文件      14328  2010-09-27 14:53  SerialPort\SerialPort\bin\Debug\SerialPort.vshost.exe

     文件      11264  2010-07-31 22:19  SerialPort\SerialPort\bin\Release\SerialPort.exe

     文件      22016  2010-07-31 22:19  SerialPort\SerialPort\bin\Release\SerialPort.pdb

     文件       6220  2010-07-31 21:51  SerialPort\SerialPort\Form1.cs

     文件       4511  2010-07-31 21:51  SerialPort\SerialPort\Form1.Designer.cs

     文件       6208  2010-07-31 21:51  SerialPort\SerialPort\Form1.resx

     文件       1027  2010-09-27 14:54  SerialPort\SerialPort\obj\Debug\SerialPort.csproj.FileListAbsolute.txt

     文件        847  2010-07-31 21:51  SerialPort\SerialPort\obj\Debug\SerialPort.csproj.GenerateResource.Cache

     文件      11776  2010-07-31 21:51  SerialPort\SerialPort\obj\Debug\SerialPort.exe

     文件        180  2010-07-31 21:51  SerialPort\SerialPort\obj\Debug\SerialPort.Form1.resources

     文件      28160  2010-07-31 21:51  SerialPort\SerialPort\obj\Debug\SerialPort.pdb

     文件        180  2010-07-31 11:14  SerialPort\SerialPort\obj\Debug\SerialPort.Properties.Resources.resources

     文件       1047  2010-09-27 14:53  SerialPort\SerialPort\obj\Release\SerialPort.csproj.FileListAbsolute.txt

     文件        847  2010-07-31 22:19  SerialPort\SerialPort\obj\Release\SerialPort.csproj.GenerateResource.Cache

     文件      11264  2010-07-31 22:19  SerialPort\SerialPort\obj\Release\SerialPort.exe

     文件        180  2010-07-31 22:19  SerialPort\SerialPort\obj\Release\SerialPort.Form1.resources

     文件      22016  2010-07-31 22:19  SerialPort\SerialPort\obj\Release\SerialPort.pdb

     文件        180  2010-07-31 22:19  SerialPort\SerialPort\obj\Release\SerialPort.Properties.Resources.resources

     文件        491  2010-07-31 10:48  SerialPort\SerialPort\Program.cs

     文件       1352  2010-07-31 10:48  SerialPort\SerialPort\Properties\AssemblyInfo.cs

     文件       2871  2010-07-31 10:48  SerialPort\SerialPort\Properties\Resources.Designer.cs

     文件       5612  2010-07-31 10:48  SerialPort\SerialPort\Properties\Resources.resx

     文件       1095  2010-07-31 10:48  SerialPort\SerialPort\Properties\Settings.Designer.cs

     文件        249  2010-07-31 10:48  SerialPort\SerialPort\Properties\Settings.settings

     文件       3731  2010-07-31 10:59  SerialPort\SerialPort\SerialPort.csproj

     文件         74  2010-07-31 10:48  SerialPort\SerialPort\SerialPort.csproj.user

     文件        924  2010-07-31 10:48  SerialPort\SerialPort.sln

    ..A..H.     32768  2010-09-27 14:55  SerialPort\SerialPort.suo

............此处省略15个文件信息

评论

共有 条评论