基本信息
源码名称:c#编写串口助手的源代码
源码大小:5.29M
文件格式:.zip
开发语言:C#
更新时间:2023-07-20
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
c#编写串口助手的源代码
自己花了一个月学习c#,编写出来的程序,包含详尽的源代码,可直接编译。有一个自己写的串口助手,调程序十分方便。
文件清单
└── SerialCom
├── SerialCom
│ ├── App.config
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── app.publish
│ │ │ │ ├── Application Files
│ │ │ │ │ └── SerialCom_1_0_0_2
│ │ │ │ │ ├── image
│ │ │ │ │ │ └── icon.ico.deploy
│ │ │ │ │ ├── SerialCom.exe.config.deploy
│ │ │ │ │ ├── SerialCom.exe.deploy
│ │ │ │ │ └── SerialCom.exe.manifest
│ │ │ │ ├── SerialCom.application
│ │ │ │ └── setup.exe
│ │ │ ├── SerialCom.application
│ │ │ ├── SerialCom.exe
│ │ │ ├── SerialCom.exe.config
│ │ │ ├── SerialCom.exe.manifest
│ │ │ ├── SerialCom.pdb
│ │ │ ├── SerialCom.vshost.application
│ │ │ ├── SerialCom.vshost.exe
│ │ │ ├── SerialCom.vshost.exe.config
│ │ │ └── SerialCom.vshost.exe.manifest
│ │ └── Release
│ ├── FeedBackWindow.xaml
│ ├── FeedBackWindow.xaml.cs
│ ├── image
│ │ ├── 1.png
│ │ ├── 20140328093909583_easyicon_net_96.ico
│ │ ├── 2.jpg
│ │ ├── 3.png
│ │ ├── background.png
│ │ ├── document.png
│ │ ├── exit.png
│ │ ├── feedback.png
│ │ ├── help.png
│ │ ├── icon.ico
│ │ ├── info.png
│ │ ├── Off.png
│ │ ├── On.png
│ │ ├── open.png
│ │ ├── qq.png
│ │ ├── save.png
│ │ ├── weibo.jpg
│ │ └── weixin.png
│ ├── InfoWindow.xaml
│ ├── InfoWindow.xaml.cs
│ ├── MainWindow.xaml
│ ├── MainWindow.xaml.cs
│ ├── obj
│ │ └── Debug
│ │ ├── App.g.cs
│ │ ├── App.g.i.cs
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── FeedBackWindow.baml
│ │ ├── FeedBackWindow.g.cs
│ │ ├── FeedBackWindow.g.i.cs
│ │ ├── GeneratedInternalTypeHelper.g.i.cs
│ │ ├── InfoWindow.baml
│ │ ├── InfoWindow.g.cs
│ │ ├── InfoWindow.g.i.cs
│ │ ├── MainWindow.baml
│ │ ├── MainWindow.g.cs
│ │ ├── MainWindow.g.i.cs
│ │ ├── SaveMod.g.i.cs
│ │ ├── SaveModWindow.baml
│ │ ├── SaveModWindow.g.cs
│ │ ├── SaveModWindow.g.i.cs
│ │ ├── SerialCom.application
│ │ ├── SerialCom_Content.g.i.cs
│ │ ├── SerialCom.csproj.FileListAbsolute.txt
│ │ ├── SerialCom.csproj.GenerateResource.Cache
│ │ ├── SerialCom.csprojResolveAssemblyReference.cache
│ │ ├── SerialCom.exe
│ │ ├── SerialCom.exe.manifest
│ │ ├── SerialCom.g.resources
│ │ ├── SerialCom_MarkupCompile.cache
│ │ ├── SerialCom_MarkupCompile.i.cache
│ │ ├── SerialCom_MarkupCompile.lref
│ │ ├── SerialCom.pdb
│ │ ├── SerialCom.Properties.Resources.resources
│ │ ├── SerialMainWindow.g.i.cs
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ ├── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ └── Window1.g.i.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── SaveModWindow.xaml
│ ├── SaveModWindow.xaml.cs
│ ├── SerialCom.csproj
│ ├── SerialCom.csproj.user
│ ├── SerialCom_TemporaryKey.pfx
│ ├── Window1.xaml
│ └── Window1.xaml.cs
├── SerialCom.sln
├── SerialCom.v11.suo
└── SerialCom.v12.suo
14 directories, 94 files
c#编写串口助手的源代码
自己花了一个月学习c#,编写出来的程序,包含详尽的源代码,可直接编译。有一个自己写的串口助手,调程序十分方便。
文件清单
└── SerialCom
├── SerialCom
│ ├── App.config
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── app.publish
│ │ │ │ ├── Application Files
│ │ │ │ │ └── SerialCom_1_0_0_2
│ │ │ │ │ ├── image
│ │ │ │ │ │ └── icon.ico.deploy
│ │ │ │ │ ├── SerialCom.exe.config.deploy
│ │ │ │ │ ├── SerialCom.exe.deploy
│ │ │ │ │ └── SerialCom.exe.manifest
│ │ │ │ ├── SerialCom.application
│ │ │ │ └── setup.exe
│ │ │ ├── SerialCom.application
│ │ │ ├── SerialCom.exe
│ │ │ ├── SerialCom.exe.config
│ │ │ ├── SerialCom.exe.manifest
│ │ │ ├── SerialCom.pdb
│ │ │ ├── SerialCom.vshost.application
│ │ │ ├── SerialCom.vshost.exe
│ │ │ ├── SerialCom.vshost.exe.config
│ │ │ └── SerialCom.vshost.exe.manifest
│ │ └── Release
│ ├── FeedBackWindow.xaml
│ ├── FeedBackWindow.xaml.cs
│ ├── image
│ │ ├── 1.png
│ │ ├── 20140328093909583_easyicon_net_96.ico
│ │ ├── 2.jpg
│ │ ├── 3.png
│ │ ├── background.png
│ │ ├── document.png
│ │ ├── exit.png
│ │ ├── feedback.png
│ │ ├── help.png
│ │ ├── icon.ico
│ │ ├── info.png
│ │ ├── Off.png
│ │ ├── On.png
│ │ ├── open.png
│ │ ├── qq.png
│ │ ├── save.png
│ │ ├── weibo.jpg
│ │ └── weixin.png
│ ├── InfoWindow.xaml
│ ├── InfoWindow.xaml.cs
│ ├── MainWindow.xaml
│ ├── MainWindow.xaml.cs
│ ├── obj
│ │ └── Debug
│ │ ├── App.g.cs
│ │ ├── App.g.i.cs
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── FeedBackWindow.baml
│ │ ├── FeedBackWindow.g.cs
│ │ ├── FeedBackWindow.g.i.cs
│ │ ├── GeneratedInternalTypeHelper.g.i.cs
│ │ ├── InfoWindow.baml
│ │ ├── InfoWindow.g.cs
│ │ ├── InfoWindow.g.i.cs
│ │ ├── MainWindow.baml
│ │ ├── MainWindow.g.cs
│ │ ├── MainWindow.g.i.cs
│ │ ├── SaveMod.g.i.cs
│ │ ├── SaveModWindow.baml
│ │ ├── SaveModWindow.g.cs
│ │ ├── SaveModWindow.g.i.cs
│ │ ├── SerialCom.application
│ │ ├── SerialCom_Content.g.i.cs
│ │ ├── SerialCom.csproj.FileListAbsolute.txt
│ │ ├── SerialCom.csproj.GenerateResource.Cache
│ │ ├── SerialCom.csprojResolveAssemblyReference.cache
│ │ ├── SerialCom.exe
│ │ ├── SerialCom.exe.manifest
│ │ ├── SerialCom.g.resources
│ │ ├── SerialCom_MarkupCompile.cache
│ │ ├── SerialCom_MarkupCompile.i.cache
│ │ ├── SerialCom_MarkupCompile.lref
│ │ ├── SerialCom.pdb
│ │ ├── SerialCom.Properties.Resources.resources
│ │ ├── SerialMainWindow.g.i.cs
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ ├── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ └── Window1.g.i.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── SaveModWindow.xaml
│ ├── SaveModWindow.xaml.cs
│ ├── SerialCom.csproj
│ ├── SerialCom.csproj.user
│ ├── SerialCom_TemporaryKey.pfx
│ ├── Window1.xaml
│ └── Window1.xaml.cs
├── SerialCom.sln
├── SerialCom.v11.suo
└── SerialCom.v12.suo
14 directories, 94 files