├── .gitattributes ├── .gitignore ├── README.md └── WindowsFormsApplication1 ├── WindowsFormsApplication1.sln ├── WindowsFormsApplication1.suo ├── WindowsFormsApplication1.v12.suo └── WindowsFormsApplication1 ├── ComDataHook.dll ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── WindowsFormsApplication1.csproj ├── ZGraph.dll ├── ZGraph.xml ├── bin ├── Debug │ ├── Ling Test上位机使用说明.pdf │ ├── WindowsFormsApplication1.exe │ ├── WindowsFormsApplication1.pdb │ ├── WindowsFormsApplication1.vshost.exe │ ├── WindowsFormsApplication1.vshost.exe.manifest │ ├── ZGraph.dll │ ├── ZGraph.xml │ ├── ccddata │ │ └── data0.txt │ ├── picture │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 17.png │ │ ├── 18.png │ │ ├── 19.png │ │ ├── 2.png │ │ ├── 20.png │ │ ├── 21.png │ │ ├── 22.png │ │ ├── 23.png │ │ ├── 24.png │ │ ├── 25.png │ │ ├── 26.png │ │ ├── 27.png │ │ ├── 28.png │ │ ├── 29.png │ │ ├── 3.png │ │ ├── 30.png │ │ ├── 31.png │ │ ├── 32.png │ │ ├── 33.png │ │ ├── 34.png │ │ ├── 35.png │ │ ├── 36.png │ │ ├── 37.png │ │ ├── 38.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ ├── readme │ │ ├── read00.c │ │ ├── read01.c │ │ ├── read02.c │ │ ├── read10.c │ │ ├── read11.c │ │ └── read12.c │ ├── 自定义发送.txt │ └── 说明.txt └── Release │ ├── WindowsFormsApplication1.exe │ ├── WindowsFormsApplication1.pdb │ ├── WindowsFormsApplication1.vshost.exe │ ├── WindowsFormsApplication1.vshost.exe.manifest │ ├── ZGraph.dll │ ├── ZGraph.xml │ ├── ccddata │ └── data0.txt │ ├── picture │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 15.png │ ├── 16.png │ ├── 17.png │ ├── 18.png │ ├── 19.png │ ├── 2.png │ ├── 20.png │ ├── 21.png │ ├── 22.png │ ├── 23.png │ ├── 24.png │ ├── 25.png │ ├── 26.png │ ├── 27.png │ ├── 28.png │ ├── 29.png │ ├── 3.png │ ├── 30.png │ ├── 31.png │ ├── 32.png │ ├── 33.png │ ├── 34.png │ ├── 35.png │ ├── 36.png │ ├── 37.png │ ├── 38.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── 9.png │ ├── readme │ ├── read00.c │ ├── read01.c │ ├── read02.c │ ├── read10.c │ ├── read11.c │ └── read12.c │ ├── 自定义发送.txt │ └── 说明.txt ├── obj └── x86 │ ├── Debug │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── WindowsFormsApplication1.Form1.resources │ ├── WindowsFormsApplication1.Properties.Resources.resources │ ├── WindowsFormsApplication1.csproj.FileListAbsolute.txt │ ├── WindowsFormsApplication1.csproj.GenerateResource.Cache │ ├── WindowsFormsApplication1.csprojResolveAssemblyReference.cache │ ├── WindowsFormsApplication1.exe │ └── WindowsFormsApplication1.pdb │ └── Release │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── WindowsFormsApplication1.Form1.resources │ ├── WindowsFormsApplication1.Properties.Resources.resources │ ├── WindowsFormsApplication1.csproj.FileListAbsolute.txt │ ├── WindowsFormsApplication1.csproj.GenerateResource.Cache │ ├── WindowsFormsApplication1.csprojResolveAssemblyReference.cache │ ├── WindowsFormsApplication1.exe │ └── WindowsFormsApplication1.pdb └── 文件名.ico /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # Windows shortcuts 18 | *.lnk 19 | 20 | # ========================= 21 | # Operating System Files 22 | # ========================= 23 | 24 | # OSX 25 | # ========================= 26 | 27 | .DS_Store 28 | .AppleDouble 29 | .LSOverride 30 | 31 | # Thumbnails 32 | ._* 33 | 34 | # Files that might appear on external disk 35 | .Spotlight-V100 36 | .Trashes 37 | 38 | # Directories potentially created on remote AFP share 39 | .AppleDB 40 | .AppleDesktop 41 | Network Trash Folder 42 | Temporary Items 43 | .apdisk 44 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 使用C#语言做的上位机软件(此项目已经停止维护...)

2 | * 用于智能车比赛和电子设计竞赛,单片机发送代码在运行软件后能找到

3 | * 做关于硬件的比赛肯定少不了上位机的辅助,然而一个好的上位机简直是利器

4 | * 智能车超好用上位机推荐(附C#教程):http://www.znczz.com/thread-237704-1-1.html

5 | -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2010 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WindowsFormsApplication1", "WindowsFormsApplication1\WindowsFormsApplication1.csproj", "{F0A4E769-AF2C-4D3E-8502-4015F9A1B2DB}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|x86 = Debug|x86 9 | Release|x86 = Release|x86 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {F0A4E769-AF2C-4D3E-8502-4015F9A1B2DB}.Debug|x86.ActiveCfg = Debug|x86 13 | {F0A4E769-AF2C-4D3E-8502-4015F9A1B2DB}.Debug|x86.Build.0 = Debug|x86 14 | {F0A4E769-AF2C-4D3E-8502-4015F9A1B2DB}.Release|x86.ActiveCfg = Release|x86 15 | {F0A4E769-AF2C-4D3E-8502-4015F9A1B2DB}.Release|x86.Build.0 = Release|x86 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1.suo -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1.v12.suo -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/ComDataHook.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/ComDataHook.dll -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Windows.Forms; 5 | 6 | namespace WindowsFormsApplication1 7 | { 8 | static class Program 9 | { 10 | ///

11 | /// The main entry point for the application. 12 | /// 13 | [STAThread] 14 | static void Main() 15 | { 16 | Application.EnableVisualStyles(); 17 | Application.SetCompatibleTextRenderingDefault(false); 18 | Application.Run(new Form1()); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("WindowsFormsApplication1")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("WindowsFormsApplication1")] 13 | [assembly: AssemblyCopyright("Copyright © 2014")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("b74d9edf-0ffa-4d92-a7b6-4bf46cabe837")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.18408 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace WindowsFormsApplication1.Properties 12 | { 13 | 14 | 15 | /// 16 | /// A strongly-typed resource class, for looking up localized strings, etc. 17 | /// 18 | // This class was auto-generated by the StronglyTypedResourceBuilder 19 | // class via a tool like ResGen or Visual Studio. 20 | // To add or remove a member, edit your .ResX file then rerun ResGen 21 | // with the /str option, or rebuild your VS project. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources 26 | { 27 | 28 | private static global::System.Resources.ResourceManager resourceMan; 29 | 30 | private static global::System.Globalization.CultureInfo resourceCulture; 31 | 32 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 33 | internal Resources() 34 | { 35 | } 36 | 37 | /// 38 | /// Returns the cached ResourceManager instance used by this class. 39 | /// 40 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 41 | internal static global::System.Resources.ResourceManager ResourceManager 42 | { 43 | get 44 | { 45 | if ((resourceMan == null)) 46 | { 47 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("WindowsFormsApplication1.Properties.Resources", typeof(Resources).Assembly); 48 | resourceMan = temp; 49 | } 50 | return resourceMan; 51 | } 52 | } 53 | 54 | /// 55 | /// Overrides the current thread's CurrentUICulture property for all 56 | /// resource lookups using this strongly typed resource class. 57 | /// 58 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 59 | internal static global::System.Globalization.CultureInfo Culture 60 | { 61 | get 62 | { 63 | return resourceCulture; 64 | } 65 | set 66 | { 67 | resourceCulture = value; 68 | } 69 | } 70 | } 71 | } 72 | -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/Properties/Resources.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | text/microsoft-resx 107 | 108 | 109 | 2.0 110 | 111 | 112 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 113 | 114 | 115 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.18408 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace WindowsFormsApplication1.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/WindowsFormsApplication1.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Debug 5 | x86 6 | 8.0.30703 7 | 2.0 8 | {F0A4E769-AF2C-4D3E-8502-4015F9A1B2DB} 9 | WinExe 10 | Properties 11 | WindowsFormsApplication1 12 | WindowsFormsApplication1 13 | v4.0 14 | Client 15 | 512 16 | 17 | 18 | x86 19 | true 20 | full 21 | false 22 | bin\Debug\ 23 | DEBUG;TRACE 24 | prompt 25 | 4 26 | 27 | 28 | x86 29 | pdbonly 30 | true 31 | bin\Release\ 32 | TRACE 33 | prompt 34 | 4 35 | 36 | 37 | 文件名.ico 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | .\ZGraph.dll 52 | 53 | 54 | 55 | 56 | Form 57 | 58 | 59 | Form1.cs 60 | 61 | 62 | 63 | 64 | Form1.cs 65 | 66 | 67 | ResXFileCodeGenerator 68 | Resources.Designer.cs 69 | Designer 70 | 71 | 72 | True 73 | Resources.resx 74 | 75 | 76 | SettingsSingleFileGenerator 77 | Settings.Designer.cs 78 | 79 | 80 | True 81 | Settings.settings 82 | True 83 | 84 | 85 | 86 | 87 | 88 | 89 | 96 | -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/ZGraph.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/ZGraph.dll -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/ZGraph.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ZGraph 5 | 6 | 7 | 8 | 9 | 波形显示控件 10 | 坐标最小差值:1.0 11 | 12 | 13 | 14 | 15 | 计算一个浮点数的权值 16 | 如234.53返回100 17 | 18 | 要计算权值的浮点数 19 | 权值 20 | 21 | 22 | 23 | 根据溢出坐标范围的浮点数,改变X轴的坐标标定权值和坐标标定值 24 | 25 | 溢出坐标范围的浮点数 26 | 是否从左边溢出 27 | 28 | 29 | 30 | 根据溢出坐标范围的浮点数,改变Y轴的坐标标定权值和坐标标定值 31 | 32 | 溢出坐标范围的浮点数 33 | 是否从下边溢出 34 | 35 | 36 | 37 | 遍历要画的数据集合,并转换为坐标值 38 | 39 | 要遍历的数据集合的编号 40 | 转后后的坐标集合 41 | 画布像素宽度 42 | 画布像素高度 43 | 44 | 45 | 46 | 47 | 波形显示中矩形区域的坐标转换为数据值 48 | 49 | 矩形区域左上角X轴坐标 50 | 矩形区域右下角X轴坐标 51 | 矩形区域左上角Y轴坐标 52 | 矩形区域右下角Y轴坐标 53 | 转换后的左上角X轴数据值 54 | 转换后的右下角X轴数据值 55 | 转换后的左上角Y轴数据值 56 | 转换后的右下角Y轴数据值 57 | 58 | 59 | 60 | 波形显示中一个点的坐标转换为数据值 61 | 62 | 要转换的点的X轴坐标 63 | 要转换的点的Y轴坐标 64 | 转换后的X轴坐标 65 | 转换后的Y轴坐标 66 | 67 | 68 | 69 | 波形显示控件标题 70 | 71 | 72 | 73 | 74 | X轴名称 75 | 76 | 77 | 78 | 79 | Y轴名称 80 | 81 | 82 | 83 | 84 | 当前坐标是否自动调整以适合窗口大小 85 | 86 | 87 | 88 | 89 | 当前是否处于放大查看模式 90 | 91 | 92 | 93 | 94 | 当前是否显示网格 95 | 96 | 97 | 98 | 99 | 当前是否允许放大缩小选取框显示 100 | 101 | 102 | 103 | 104 | 坐标精确度 105 | 106 | 107 | 108 | 109 | 坐标显示最多小数位数 110 | 111 | 112 | 113 | 114 | 要显示的数据集合的X轴方向值集合的引用 115 | 若显示多条数据则依次添加X轴方向值集合的引用 116 | 117 | 118 | 119 | 120 | 要显示的数据集合的Y轴方向值集合的引用 121 | 若显示多条数据则依次添加Y轴方向值集合的引用 122 | 123 | 124 | 125 | 126 | 要显示数据集合的线条颜色 127 | 128 | 129 | 130 | 131 | 要显示数据集合的线条宽度 132 | 133 | 134 | 135 | 136 | 要显示数据集合的连接点 137 | 138 | 139 | 140 | 141 | 要显示数据集合的起始线帽 142 | 143 | 144 | 145 | 146 | 要显示数据集合的样式 147 | 148 | 149 | 150 | 151 | 清空所有加载的波形数据并清空显示 152 | 153 | 154 | 155 | 156 | 重新初始化X轴和Y轴坐标 157 | 158 | 159 | 160 | 161 | 更新显示 162 | 163 | 164 | 165 | 166 | 清空原有数据并加载一条波形数据 167 | 168 | X轴 169 | Y轴 170 | 线条颜色 171 | 线条宽度 172 | 线条连接点 173 | 线条起始线帽 174 | 线条样式 175 | 176 | 177 | 178 | 清空原有数据并加载一条波形数据,显示样式为线条 179 | 180 | X轴 181 | Y轴 182 | 线条颜色 183 | 线条宽度 184 | 185 | 186 | 187 | 在原有波形上添加一条线 188 | 不可动态循环 189 | 190 | X轴 191 | Y轴 192 | 线条颜色 193 | 线条宽度 194 | 线条连接点 195 | 线条起始线帽 196 | 线条样式 197 | 198 | 199 | 200 | 在原有波形上添加一条线,显示样式为线条 201 | 不可动态循环 202 | 203 | X轴 204 | Y轴 205 | 线条颜色 206 | 线条宽度 207 | 208 | 209 | 210 | 必需的设计器变量。 211 | 212 | 213 | 214 | 215 | 清理所有正在使用的资源。 216 | 217 | 如果应释放托管资源,为 true;否则为 false。 218 | 219 | 220 | 221 | 设计器支持所需的方法 - 不要 222 | 使用代码编辑器修改此方法的内容。 223 | 224 | 225 | 226 | 227 | 构造 228 | 初始化坐标值,坐标标定值,坐标标定权值 229 | 230 | 231 | 232 | 233 | 波形显示控件标题 234 | 235 | 236 | 237 | 238 | X轴名称 239 | 240 | 241 | 242 | 243 | Y轴名称 244 | 245 | 246 | 247 | 248 | 初始X轴起始坐标 249 | 250 | 251 | 252 | 253 | 初始X轴结束坐标 254 | 255 | 256 | 257 | 258 | 初始Y轴起始坐标 259 | 260 | 261 | 262 | 263 | 初始Y轴结束坐标 264 | 265 | 266 | 267 | 268 | 控件标题字体大小 269 | 270 | 271 | 272 | 273 | 控件标题位置 274 | 275 | 276 | 277 | 278 | 控件标题颜色 279 | 280 | 281 | 282 | 283 | 控件标题描边颜色 284 | 285 | 286 | 287 | 288 | 背景色渐进起始颜色 289 | 290 | 291 | 292 | 293 | 背景色渐进终止颜色 294 | 295 | 296 | 297 | 298 | 坐标线颜色 299 | 300 | 301 | 302 | 303 | 坐标值颜色 304 | 305 | 306 | 307 | 308 | 坐标标题颜色 309 | 310 | 311 | 312 | 313 | 网格线的透明度 314 | 315 | 316 | 317 | 318 | 网格线的颜色 319 | 320 | 321 | 322 | 323 | 波形显示区域背景色 324 | 325 | 326 | 327 | 328 | 工具栏背景色 329 | 330 | 331 | 332 | 333 | 工具栏按钮背景颜色 334 | 335 | 336 | 337 | 338 | 工具栏按钮前景选中颜色 339 | 340 | 341 | 342 | 343 | 工具栏按钮前景未选中颜色 344 | 345 | 346 | 347 | 348 | 标签说明框背景颜色 349 | 350 | 351 | 352 | 353 | 标签说明框文字颜色 354 | 355 | 356 | 357 | 358 | 放大选取框背景颜色 359 | 360 | 361 | 362 | 363 | 放大选取框按钮背景颜色 364 | 365 | 366 | 367 | 368 | 放大选取框按钮文字颜色 369 | 370 | 371 | 372 | 373 | 画图样式 374 | 375 | 376 | 377 | 378 | 线条 379 | 380 | 381 | 382 | 383 | 点 384 | 385 | 386 | 387 | 388 | 条形 389 | 390 | 391 | 392 | 393 | -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/Ling Test上位机使用说明.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/Ling Test上位机使用说明.pdf -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/WindowsFormsApplication1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/WindowsFormsApplication1.exe -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/WindowsFormsApplication1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/WindowsFormsApplication1.pdb -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/WindowsFormsApplication1.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/WindowsFormsApplication1.vshost.exe -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/WindowsFormsApplication1.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/ZGraph.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/ZGraph.dll -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/ZGraph.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ZGraph 5 | 6 | 7 | 8 | 9 | 波形显示控件 10 | 坐标最小差值:1.0 11 | 12 | 13 | 14 | 15 | 计算一个浮点数的权值 16 | 如234.53返回100 17 | 18 | 要计算权值的浮点数 19 | 权值 20 | 21 | 22 | 23 | 根据溢出坐标范围的浮点数,改变X轴的坐标标定权值和坐标标定值 24 | 25 | 溢出坐标范围的浮点数 26 | 是否从左边溢出 27 | 28 | 29 | 30 | 根据溢出坐标范围的浮点数,改变Y轴的坐标标定权值和坐标标定值 31 | 32 | 溢出坐标范围的浮点数 33 | 是否从下边溢出 34 | 35 | 36 | 37 | 遍历要画的数据集合,并转换为坐标值 38 | 39 | 要遍历的数据集合的编号 40 | 转后后的坐标集合 41 | 画布像素宽度 42 | 画布像素高度 43 | 44 | 45 | 46 | 47 | 波形显示中矩形区域的坐标转换为数据值 48 | 49 | 矩形区域左上角X轴坐标 50 | 矩形区域右下角X轴坐标 51 | 矩形区域左上角Y轴坐标 52 | 矩形区域右下角Y轴坐标 53 | 转换后的左上角X轴数据值 54 | 转换后的右下角X轴数据值 55 | 转换后的左上角Y轴数据值 56 | 转换后的右下角Y轴数据值 57 | 58 | 59 | 60 | 波形显示中一个点的坐标转换为数据值 61 | 62 | 要转换的点的X轴坐标 63 | 要转换的点的Y轴坐标 64 | 转换后的X轴坐标 65 | 转换后的Y轴坐标 66 | 67 | 68 | 69 | 波形显示控件标题 70 | 71 | 72 | 73 | 74 | X轴名称 75 | 76 | 77 | 78 | 79 | Y轴名称 80 | 81 | 82 | 83 | 84 | 当前坐标是否自动调整以适合窗口大小 85 | 86 | 87 | 88 | 89 | 当前是否处于放大查看模式 90 | 91 | 92 | 93 | 94 | 当前是否显示网格 95 | 96 | 97 | 98 | 99 | 当前是否允许放大缩小选取框显示 100 | 101 | 102 | 103 | 104 | 坐标精确度 105 | 106 | 107 | 108 | 109 | 坐标显示最多小数位数 110 | 111 | 112 | 113 | 114 | 要显示的数据集合的X轴方向值集合的引用 115 | 若显示多条数据则依次添加X轴方向值集合的引用 116 | 117 | 118 | 119 | 120 | 要显示的数据集合的Y轴方向值集合的引用 121 | 若显示多条数据则依次添加Y轴方向值集合的引用 122 | 123 | 124 | 125 | 126 | 要显示数据集合的线条颜色 127 | 128 | 129 | 130 | 131 | 要显示数据集合的线条宽度 132 | 133 | 134 | 135 | 136 | 要显示数据集合的连接点 137 | 138 | 139 | 140 | 141 | 要显示数据集合的起始线帽 142 | 143 | 144 | 145 | 146 | 要显示数据集合的样式 147 | 148 | 149 | 150 | 151 | 清空所有加载的波形数据并清空显示 152 | 153 | 154 | 155 | 156 | 重新初始化X轴和Y轴坐标 157 | 158 | 159 | 160 | 161 | 更新显示 162 | 163 | 164 | 165 | 166 | 清空原有数据并加载一条波形数据 167 | 168 | X轴 169 | Y轴 170 | 线条颜色 171 | 线条宽度 172 | 线条连接点 173 | 线条起始线帽 174 | 线条样式 175 | 176 | 177 | 178 | 清空原有数据并加载一条波形数据,显示样式为线条 179 | 180 | X轴 181 | Y轴 182 | 线条颜色 183 | 线条宽度 184 | 185 | 186 | 187 | 在原有波形上添加一条线 188 | 不可动态循环 189 | 190 | X轴 191 | Y轴 192 | 线条颜色 193 | 线条宽度 194 | 线条连接点 195 | 线条起始线帽 196 | 线条样式 197 | 198 | 199 | 200 | 在原有波形上添加一条线,显示样式为线条 201 | 不可动态循环 202 | 203 | X轴 204 | Y轴 205 | 线条颜色 206 | 线条宽度 207 | 208 | 209 | 210 | 必需的设计器变量。 211 | 212 | 213 | 214 | 215 | 清理所有正在使用的资源。 216 | 217 | 如果应释放托管资源,为 true;否则为 false。 218 | 219 | 220 | 221 | 设计器支持所需的方法 - 不要 222 | 使用代码编辑器修改此方法的内容。 223 | 224 | 225 | 226 | 227 | 构造 228 | 初始化坐标值,坐标标定值,坐标标定权值 229 | 230 | 231 | 232 | 233 | 波形显示控件标题 234 | 235 | 236 | 237 | 238 | X轴名称 239 | 240 | 241 | 242 | 243 | Y轴名称 244 | 245 | 246 | 247 | 248 | 初始X轴起始坐标 249 | 250 | 251 | 252 | 253 | 初始X轴结束坐标 254 | 255 | 256 | 257 | 258 | 初始Y轴起始坐标 259 | 260 | 261 | 262 | 263 | 初始Y轴结束坐标 264 | 265 | 266 | 267 | 268 | 控件标题字体大小 269 | 270 | 271 | 272 | 273 | 控件标题位置 274 | 275 | 276 | 277 | 278 | 控件标题颜色 279 | 280 | 281 | 282 | 283 | 控件标题描边颜色 284 | 285 | 286 | 287 | 288 | 背景色渐进起始颜色 289 | 290 | 291 | 292 | 293 | 背景色渐进终止颜色 294 | 295 | 296 | 297 | 298 | 坐标线颜色 299 | 300 | 301 | 302 | 303 | 坐标值颜色 304 | 305 | 306 | 307 | 308 | 坐标标题颜色 309 | 310 | 311 | 312 | 313 | 网格线的透明度 314 | 315 | 316 | 317 | 318 | 网格线的颜色 319 | 320 | 321 | 322 | 323 | 波形显示区域背景色 324 | 325 | 326 | 327 | 328 | 工具栏背景色 329 | 330 | 331 | 332 | 333 | 工具栏按钮背景颜色 334 | 335 | 336 | 337 | 338 | 工具栏按钮前景选中颜色 339 | 340 | 341 | 342 | 343 | 工具栏按钮前景未选中颜色 344 | 345 | 346 | 347 | 348 | 标签说明框背景颜色 349 | 350 | 351 | 352 | 353 | 标签说明框文字颜色 354 | 355 | 356 | 357 | 358 | 放大选取框背景颜色 359 | 360 | 361 | 362 | 363 | 放大选取框按钮背景颜色 364 | 365 | 366 | 367 | 368 | 放大选取框按钮文字颜色 369 | 370 | 371 | 372 | 373 | 画图样式 374 | 375 | 376 | 377 | 378 | 线条 379 | 380 | 381 | 382 | 383 | 点 384 | 385 | 386 | 387 | 388 | 条形 389 | 390 | 391 | 392 | 393 | -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/ccddata/data0.txt: -------------------------------------------------------------------------------- 1 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 2 | 2015/6/12 11:08:03 3 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 4 | 2015/6/12 11:08:50 5 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 6 | 2015/6/12 11:09:31 7 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 8 | 2015/6/12 14:30:36 9 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 10 | 2015/6/12 14:31:50 11 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 12 | 2015/6/12 14:32:16 13 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 14 | 2015/6/12 14:32:38 15 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 16 | 2015/6/12 14:33:51 17 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 18 | 2015/6/12 14:34:31 19 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 20 | 2015/6/12 14:34:45 21 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 22 | 2015/6/12 14:35:54 23 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 24 | 2015/6/12 14:37:55 25 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 26 | 2015/6/12 14:38:20 27 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 28 | 2015/6/12 14:38:51 29 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 30 | 2015/6/12 14:39:27 31 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 32 | 2015/6/12 14:39:54 33 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 34 | 2015/6/12 14:40:16 35 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 36 | 2015/6/12 14:43:05 37 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 38 | 2015/6/12 14:43:24 39 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 40 | 2015/6/12 14:44:16 41 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 42 | 2015/6/12 14:44:41 43 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 44 | 2015/6/12 14:45:38 45 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 46 | 2015/6/12 14:46:20 47 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 48 | 2015/6/12 14:46:43 49 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 50 | 2015/6/12 14:47:34 51 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 52 | 2015/6/12 14:50:48 53 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 54 | 2015/6/12 14:51:13 55 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 56 | 2015/6/12 14:53:51 57 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 58 | 2015/6/12 14:54:22 59 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 60 | 2015/6/12 14:54:55 61 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 62 | 2015/6/12 14:55:28 63 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 64 | 2015/6/12 14:56:35 65 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 66 | 2015/6/12 14:56:58 67 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 68 | 2015/6/12 14:57:12 69 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 70 | 2015/6/12 14:58:34 71 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 72 | 2015/6/12 14:58:52 73 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 74 | 2015/6/12 15:00:09 75 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 76 | 2015/6/12 15:01:55 77 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 78 | 2015/6/12 15:02:29 79 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 80 | 2015/6/12 15:03:43 81 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 82 | 2015/6/12 15:05:06 83 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 84 | 2015/6/12 15:05:48 85 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 86 | 2015/6/12 15:06:25 87 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 88 | 2015/6/12 15:09:21 89 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 90 | 2015/6/12 15:09:52 91 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 92 | 2015/6/12 15:10:08 93 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 94 | 2015/6/12 15:12:17 95 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 96 | 2015/6/12 15:12:40 97 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 98 | 2015/6/12 15:13:10 99 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 100 | 2015/6/12 15:13:53 101 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 102 | 2015/6/12 15:15:55 103 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 104 | 2015/6/12 15:17:24 105 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 106 | 2015/6/12 15:19:14 107 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 108 | 2015/6/12 15:20:06 109 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 110 | 2015/6/12 15:21:11 111 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 112 | 2015/6/12 15:21:31 113 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 114 | 2015/6/12 15:21:42 115 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 116 | 2015/6/12 15:23:18 117 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 118 | 2015/6/12 16:00:25 119 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 120 | 2015/6/26 8:07:39 121 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 122 | 2015/7/1 20:01:41 123 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 124 | 2015/7/1 20:13:05 125 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 126 | 2015/7/1 20:26:34 127 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 | 129 | 2015/7/2 10:48:40 130 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 0 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 131 | 132 | 2015/7/2 17:09:10 133 | -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/1.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/10.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/11.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/12.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/13.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/14.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/15.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/16.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/17.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/18.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/19.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/2.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/20.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/21.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/22.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/23.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/24.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/25.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/26.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/27.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/28.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/29.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/3.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/30.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/31.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/32.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/33.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/34.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/35.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/36.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/37.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/38.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/4.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/5.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/6.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/7.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/8.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/picture/9.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/readme/read00.c: -------------------------------------------------------------------------------- 1 | void SCI_Send_Datas(UARTn uratn) 2 | { 3 | static unsigned short int send_data[3][8] = { { 0 }, { 0 }, { 0 } }; 4 | 5 | send_data[0][0] = (unsigned short int)(10); 6 | send_data[0][1] = (unsigned short int)(20); 7 | send_data[0][2] = (unsigned short int)(30); 8 | send_data[0][3] = (unsigned short int)(40); 9 | send_data[0][4] = (unsigned short int)(0); 10 | send_data[0][5] = (unsigned short int)(0); 11 | send_data[0][6] = (unsigned short int)(0); 12 | send_data[0][7] = (unsigned short int)(0); 13 | 14 | send_data[1][0] = (unsigned short int)(0); 15 | send_data[1][1] = (unsigned short int)(0); 16 | send_data[1][2] = (unsigned short int)(0); 17 | send_data[1][3] = (unsigned short int)(0); 18 | send_data[1][4] = (unsigned short int)(0); 19 | send_data[1][5] = (unsigned short int)(0); 20 | send_data[1][6] = (unsigned short int)(0); 21 | send_data[1][7] = (unsigned short int)(0); 22 | 23 | send_data[2][0] = (unsigned short int)(0); 24 | send_data[2][1] = (unsigned short int)(0); 25 | send_data[2][2] = (unsigned short int)(0); 26 | send_data[2][3] = (unsigned short int)(0); 27 | send_data[2][4] = (unsigned short int)(0); 28 | send_data[2][5] = (unsigned short int)(0); 29 | send_data[2][6] = (unsigned short int)(0); 30 | send_data[2][7] = (unsigned short int)(0); 31 | 32 | uart_putchar(uratn, 'S'); 33 | uart_putchar(uratn, 'T'); 34 | for (int i = 0; i < 3; i++) 35 | for (int j = 0; j < 8; j++) 36 | { 37 | uart_putchar(uratn, (unsigned char)(send_data[i][j] & 0x00ff)); 38 | uart_putchar(uratn, (unsigned char)(send_data[i][j] >> 8u)); 39 | } 40 | } -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/readme/read01.c: -------------------------------------------------------------------------------- 1 | //send ccd Data 2 | void SCI_Send_CCD(UARTn uratn, int ccdNum) 3 | { 4 | if (ccdNum != 1 && ccdNum != 2) 5 | return; 6 | uart_putchar(uratn, 255); 7 | uart_putchar(uratn, 255); 8 | uart_putchar(uratn, ccdNum);//number 9 | for (int i = 0; i < 128; i++) 10 | if (ccdData1[i] == 255) 11 | uart_putchar(uratn, 254); 12 | else 13 | uart_putchar(uratn, ccdData1[i]); 14 | if (ccdNum == 2) 15 | for (int i = 0; i < 128; i++) 16 | if (ccdData2[i] == 255) 17 | uart_putchar(uratn, 254); 18 | else 19 | uart_putchar(uratn, ccdData2[i]); 20 | } -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/readme/read02.c: -------------------------------------------------------------------------------- 1 | //send fireImage camera Data 2 | void SCI_Send_fireImage(UARTn uratn) 3 | { 4 | int H = 240, L = 320; 5 | //send "CAMERA" 6 | uart_putchar(uratn, 'C'); 7 | uart_putchar(uratn, 'A'); 8 | uart_putchar(uratn, 'M'); 9 | uart_putchar(uratn, 'E'); 10 | uart_putchar(uratn, 'R'); 11 | uart_putchar(uratn, 'A'); 12 | uart_putchar(uratn, (unsigned char)(H >> 8));//send Hang 13 | uart_putchar(uratn, (unsigned char)(H & 0x00FF)); 14 | uart_putchar(uratn, (unsigned char)(L >> 8));//send Lie 15 | uart_putchar(uratn, (unsigned char)(L & 0x00FF)); 16 | //send all data 17 | for (int i = 0; i < H; i++) 18 | for (int j = 0; j < L / 8; j++) 19 | uart_putchar(uratn, Image_fire[i][j]); 20 | } 21 | 22 | 23 | //send usual camera Data 24 | void SCI_Send_Image(UARTn uratn) 25 | { 26 | int H = 240, L = 320; 27 | //send "CAMERA" 28 | uart_putchar(uratn, 'C'); 29 | uart_putchar(uratn, 'A'); 30 | uart_putchar(uratn, 'M'); 31 | uart_putchar(uratn, 'E'); 32 | uart_putchar(uratn, 'R'); 33 | uart_putchar(uratn, 'A'); 34 | //send Hang 35 | uart_putchar(uratn, (unsigned char)(H >> 8)); 36 | uart_putchar(uratn, (unsigned char)(H & 0x00FF)); 37 | //send Lie 38 | uart_putchar(uratn, (unsigned char)(L >> 8)); 39 | uart_putchar(uratn, (unsigned char)(L & 0x00FF)); 40 | //send all data 41 | for (int i = 0; i < H; i++) 42 | for (int j = 0; j < L; j++) 43 | uart_putchar(uratn, cameraData[i][j]); 44 | } -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/readme/read10.c: -------------------------------------------------------------------------------- 1 | void SCI_Send_Datas() 2 | { 3 | int i, j; 4 | static unsigned int send_data[3][8] = { { 0 }, { 0 }, { 0 } }; 5 | 6 | send_data[0][0] = (unsigned int)(10); 7 | send_data[0][1] = (unsigned int)(20); 8 | send_data[0][2] = (unsigned int)(30); 9 | send_data[0][3] = (unsigned int)(40); 10 | send_data[0][4] = (unsigned int)(0); 11 | send_data[0][5] = (unsigned int)(0); 12 | send_data[0][6] = (unsigned int)(0); 13 | send_data[0][7] = (unsigned int)(0); 14 | 15 | send_data[1][0] = (unsigned int)(0); 16 | send_data[1][1] = (unsigned int)(0); 17 | send_data[1][2] = (unsigned int)(0); 18 | send_data[1][3] = (unsigned int)(0); 19 | send_data[1][4] = (unsigned int)(0); 20 | send_data[1][5] = (unsigned int)(0); 21 | send_data[1][6] = (unsigned int)(0); 22 | send_data[1][7] = (unsigned int)(0); 23 | 24 | send_data[2][0] = (unsigned int)(0); 25 | send_data[2][1] = (unsigned int)(0); 26 | send_data[2][2] = (unsigned int)(0); 27 | send_data[2][3] = (unsigned int)(0); 28 | send_data[2][4] = (unsigned int)(0); 29 | send_data[2][5] = (unsigned int)(0); 30 | send_data[2][6] = (unsigned int)(0); 31 | send_data[2][7] = (unsigned int)(0); 32 | 33 | while (AS1_SendChar('S')); 34 | while (AS1_SendChar('T')); 35 | for (i = 0; i < 3; i++) 36 | for (j = 0; j < 8; j++) 37 | { 38 | while (AS1_SendChar((unsigned char)(send_data[i][j] & 0x00ff))); 39 | while (AS1_SendChar((unsigned char)(send_data[i][j] >> 8u))); 40 | } 41 | } -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/readme/read11.c: -------------------------------------------------------------------------------- 1 | //send ccd Data 2 | void SCI_Send_CCD(int ccdNum) 3 | { 4 | int i; 5 | if (ccdNum != 1 && ccdNum != 2) 6 | return; 7 | while (AS1_SendChar(255)); 8 | while (AS1_SendChar(255)); 9 | while (AS1_SendChar(ccdNum);//number 10 | for (int i = 0; i < 128; i++) 11 | if (ccdData1[i] == 255) 12 | while (AS1_SendChar(254)); 13 | else 14 | while (AS1_SendChar(ccdData1[i])); 15 | if (ccdNum == 2) 16 | for (int i = 0; i < 128; i++) 17 | if (ccdData2[i] == 255) 18 | while (AS1_SendChar(254)); 19 | else 20 | while (AS1_SendChar(ccdData2[i])); 21 | } -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/readme/read12.c: -------------------------------------------------------------------------------- 1 | //send fireImage camera Data 2 | void SCI_Send_fireImage() 3 | { 4 | int i, j; 5 | int H = 240, L = 320; 6 | //send "CAMERA" 7 | while (AS1_SendChar('C')); 8 | while (AS1_SendChar('A')); 9 | while (AS1_SendChar('M')); 10 | while (AS1_SendChar('E')); 11 | while (AS1_SendChar('R')); 12 | while (AS1_SendChar('A')); 13 | while (AS1_SendChar((unsigned char)(H >> 8)));//send Hang 14 | while (AS1_SendChar((unsigned char)(H & 0x00FF))); 15 | while (AS1_SendChar((unsigned char)(L >> 8)));//send Lie 16 | while (AS1_SendChar((unsigned char)(L & 0x00FF))); 17 | //send all data 18 | for (i = 0; i < H; i++) 19 | for (j = 0; j < L / 8; j++) 20 | while (AS1_SendChar(Image_fire[i][j])); 21 | } 22 | 23 | 24 | //send usual camera Data 25 | void SCI_Send_Image() 26 | { 27 | int i, j; 28 | int H = 240, L = 320; 29 | //send "CAMERA" 30 | while (AS1_SendChar('C'); 31 | while (AS1_SendChar('A'); 32 | while (AS1_SendChar('M'); 33 | while (AS1_SendChar('E'); 34 | while (AS1_SendChar('R'); 35 | while (AS1_SendChar('A'); 36 | //send Hang 37 | while (AS1_SendChar((unsigned char)(H >> 8))); 38 | while (AS1_SendChar((unsigned char)(H & 0x00FF))); 39 | //send Lie 40 | while (AS1_SendChar((unsigned char)(L >> 8))); 41 | while (AS1_SendChar((unsigned char)(L & 0x00FF))); 42 | //send all data 43 | for (i = 0; i < H; i++) 44 | for (j = 0; j < L; j++) 45 | while (AS1_SendChar(cameraData[i][j])); 46 | } -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/自定义发送.txt: -------------------------------------------------------------------------------- 1 | 8 2 | 3 | P=P+1 4 | a 5 | P=P-1 6 | b 7 | P=P+0.1 8 | c 9 | P=P-0.1 10 | d 11 | D=D+1 12 | e 13 | D=D-1 14 | f 15 | D=D+0.1 16 | g 17 | D=D-0.1 18 | h 19 | ***************** 20 | ***************** 21 | ***************** 22 | ***************** 23 | ***************** 24 | ***************** 25 | ***************** 26 | ***************** 27 | ***************** 28 | ***************** -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/说明.txt: -------------------------------------------------------------------------------- 1 | //如果有疑问请联系qq:912385457 2 | //若果想定制专属上位机请联系。价钱面议。。。 3 | 4 | 一、3*8画图功能的单片机函数(K60+XS128) 5 | //以下为K60程序 ,重要的就是send_data的赋值和send_num的赋值 6 | void SCISend_to_PIDDebug(UARTn uratn) 7 | { 8 | //1.所用数据 9 | static unsigned char i,j; 10 | static unsigned short int send_data[3][8]={{0},{0},{0}};//3幅图,每幅最多8条曲线,一条曲线是1个数 11 | static unsigned char send_num[3]={3,0,0}; //每幅图多少条曲线 12 | 13 | //2.将想发的变量赋值给send1_data,send2_data,send3_data,就是把10,20,30这些数字改成变量就行。不发的数据要注释(省时间) 14 | send_data[0][0]=(unsigned short int)(10); 15 | send_data[0][1]=(unsigned short int)(20); 16 | send_data[0][2]=(unsigned short int)(30); 17 | /*send_data[0][3]=(unsigned short int)(40); 18 | send_data[0][4]=(unsigned short int)(-10); 19 | send_data[0][5]=(unsigned short int)(-20); 20 | send_data[0][6]=(unsigned short int)(-30); 21 | send_data[0][7]=(unsigned short int)(-40); 22 | 23 | send_data[1][0]=(unsigned short int)(100); 24 | send_data[1][1]=(unsigned short int)(200); 25 | send_data[1][2]=(unsigned short int)(300); 26 | send_data[1][3]=(unsigned short int)(400); 27 | send_data[1][4]=(unsigned short int)(-100); 28 | send_data[1][5]=(unsigned short int)(-200); 29 | send_data[1][6]=(unsigned short int)(-300); 30 | send_data[1][7]=(unsigned short int)(-400); 31 | 32 | send_data[2][0]=(unsigned short int)(10000); 33 | send_data[2][1]=(unsigned short int)(20000); 34 | send_data[2][2]=(unsigned short int)(30000); 35 | send_data[2][3]=(unsigned short int)(40000); 36 | send_data[2][4]=(unsigned short int)(-10000); 37 | send_data[2][5]=(unsigned short int)(-20000); 38 | send_data[2][6]=(unsigned short int)(-30000); 39 | send_data[2][7]=(unsigned short int)(-40000);*/ 40 | 41 | //3.这三幅图的字头,start的前两个字母 42 | //理论上误码率约为1/65536=0.0000152587890625,应该这么算吧,就是这么个意思,不准确 43 | //如果是处女座有强迫症可以在单片机上加上过滤,或者找我在软件上加上更加严格的字头 44 | uart_putchar(uratn,'S'); 45 | uart_putchar(uratn,'T'); 46 | 47 | //4.发送数据 48 | for(i=0;i < 3;i++) 49 | for(j=0;j < send_num[i];j++) 50 | { 51 | uart_putchar(uratn,send_data[i][j]); 52 | uart_putchar(uratn,send_data[i][j]>>8u); 53 | } 54 | } 55 | 56 | //以下为XS128程序,重要的就是send_data的赋值和send_num的赋值 57 | void SCISend_to_PIDDebug() 58 | { 59 | //1.所用数据 60 | static unsigned char i,j; 61 | static unsigned int send_data[3][8]={{0},{0},{0}};//3幅图,每幅最多8条曲线,一条曲线是1个数 62 | static unsigned char send_num[3]={3,0,0}; //每幅图多少条曲线 63 | 64 | //2.将想发的变量赋值给send1_data,send2_data,send3_data,就是把10,20,30这些数字改成变量就行。不发的数据要注释(省时间) 65 | send_data[0][0]=(unsigned int)(10); 66 | send_data[0][1]=(unsigned int)(20); 67 | send_data[0][2]=(unsigned int)(30); 68 | /*send_data[0][3]=(unsigned int)(40); 69 | send_data[0][4]=(unsigned int)(-10); 70 | send_data[0][5]=(unsigned int)(-20); 71 | send_data[0][6]=(unsigned int)(-30); 72 | send_data[0][7]=(unsigned int)(-40); 73 | 74 | send_data[1][0]=(unsigned int)(100); 75 | send_data[1][1]=(unsigned int)(200); 76 | send_data[1][2]=(unsigned int)(300); 77 | send_data[1][3]=(unsigned int)(400); 78 | send_data[1][4]=(unsigned int)(-100); 79 | send_data[1][5]=(unsigned int)(-200); 80 | send_data[1][6]=(unsigned int)(-300); 81 | send_data[1][7]=(unsigned int)(-400); 82 | 83 | send_data[2][0]=(unsigned int)(10000); 84 | send_data[2][1]=(unsigned int)(20000); 85 | send_data[2][2]=(unsigned int)(30000); 86 | send_data[2][3]=(unsigned int)(40000); 87 | send_data[2][4]=(unsigned int)(-10000); 88 | send_data[2][5]=(unsigned int)(-20000); 89 | send_data[2][6]=(unsigned int)(-30000); 90 | send_data[2][7]=(unsigned int)(-40000);*/ 91 | 92 | //3.这三幅图的字头,start的前两个字母 93 | //理论上误码率约为1/65536=0.0000152587890625,应该这么算吧,就是这么个意思,不准确 94 | //如果是处女座有强迫症可以在单片机上加上过滤,或者找我在软件上加上更加严格的字头 95 | uart_putchar('S'); 96 | uart_putchar('T'); 97 | 98 | //4.发送数据 99 | for(i=0;i < 3;i++) 100 | for(j=0;j < send_num[i];j++) 101 | { 102 | uart_putchar(send_data[i][j]); 103 | uart_putchar(send_data[i][j]>>8u); 104 | } 105 | } 106 | 107 | 108 | 二、ccd画图功能的单片机函数(k60和xs128一样) 109 | void Send_ONEccddata_to_PC()//发送一个ccd的数据,在上位机上也要进行选择,ccddata0为用户自己定义的ccd数据全局变量 110 | { 111 | //字头为0和255 112 | uart_putchar(0); 113 | uart_putchar(255); 114 | for(int i=0;i<128;i++) 115 | uart_putchar(ccddata0[i]); 116 | } 117 | void Send_TWOccddata_to_PC()//发送两个ccd的数据,在上位机上也要进行选择,ccddata0和ccddata1为用户自己定义的ccd数据全局变量 118 | { 119 | //字头为0和255 120 | uart_putchar(0); 121 | uart_putchar(255); 122 | for(int i=0;i<128;i++) 123 | uart_putchar(ccddata0[i]); 124 | for(int i=0;i<128;i++) 125 | uart_putchar(ccddata1[i]); 126 | } 127 | 128 | 三、摄像头采集功能,单片机函数 129 | void Send_Camera_Image_to_PC()//Image为用户自己定义的摄像头数据全局变量 130 | { 131 | //字头255 132 | uart_putchar(255); 133 | for(int i=0;i<128;i++) 134 | for(int j=0;j<128;j++) 135 | { 136 | if(Image[i][j]==255) 137 | uart_putchar(254); 138 | else 139 | uart_putchar(Image[i][j]); 140 | } 141 | } 142 | 143 | -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/WindowsFormsApplication1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/WindowsFormsApplication1.exe -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/WindowsFormsApplication1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/WindowsFormsApplication1.pdb -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/WindowsFormsApplication1.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/WindowsFormsApplication1.vshost.exe -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/WindowsFormsApplication1.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/ZGraph.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/ZGraph.dll -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/ZGraph.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ZGraph 5 | 6 | 7 | 8 | 9 | 波形显示控件 10 | 坐标最小差值:1.0 11 | 12 | 13 | 14 | 15 | 计算一个浮点数的权值 16 | 如234.53返回100 17 | 18 | 要计算权值的浮点数 19 | 权值 20 | 21 | 22 | 23 | 根据溢出坐标范围的浮点数,改变X轴的坐标标定权值和坐标标定值 24 | 25 | 溢出坐标范围的浮点数 26 | 是否从左边溢出 27 | 28 | 29 | 30 | 根据溢出坐标范围的浮点数,改变Y轴的坐标标定权值和坐标标定值 31 | 32 | 溢出坐标范围的浮点数 33 | 是否从下边溢出 34 | 35 | 36 | 37 | 遍历要画的数据集合,并转换为坐标值 38 | 39 | 要遍历的数据集合的编号 40 | 转后后的坐标集合 41 | 画布像素宽度 42 | 画布像素高度 43 | 44 | 45 | 46 | 47 | 波形显示中矩形区域的坐标转换为数据值 48 | 49 | 矩形区域左上角X轴坐标 50 | 矩形区域右下角X轴坐标 51 | 矩形区域左上角Y轴坐标 52 | 矩形区域右下角Y轴坐标 53 | 转换后的左上角X轴数据值 54 | 转换后的右下角X轴数据值 55 | 转换后的左上角Y轴数据值 56 | 转换后的右下角Y轴数据值 57 | 58 | 59 | 60 | 波形显示中一个点的坐标转换为数据值 61 | 62 | 要转换的点的X轴坐标 63 | 要转换的点的Y轴坐标 64 | 转换后的X轴坐标 65 | 转换后的Y轴坐标 66 | 67 | 68 | 69 | 波形显示控件标题 70 | 71 | 72 | 73 | 74 | X轴名称 75 | 76 | 77 | 78 | 79 | Y轴名称 80 | 81 | 82 | 83 | 84 | 当前坐标是否自动调整以适合窗口大小 85 | 86 | 87 | 88 | 89 | 当前是否处于放大查看模式 90 | 91 | 92 | 93 | 94 | 当前是否显示网格 95 | 96 | 97 | 98 | 99 | 当前是否允许放大缩小选取框显示 100 | 101 | 102 | 103 | 104 | 坐标精确度 105 | 106 | 107 | 108 | 109 | 坐标显示最多小数位数 110 | 111 | 112 | 113 | 114 | 要显示的数据集合的X轴方向值集合的引用 115 | 若显示多条数据则依次添加X轴方向值集合的引用 116 | 117 | 118 | 119 | 120 | 要显示的数据集合的Y轴方向值集合的引用 121 | 若显示多条数据则依次添加Y轴方向值集合的引用 122 | 123 | 124 | 125 | 126 | 要显示数据集合的线条颜色 127 | 128 | 129 | 130 | 131 | 要显示数据集合的线条宽度 132 | 133 | 134 | 135 | 136 | 要显示数据集合的连接点 137 | 138 | 139 | 140 | 141 | 要显示数据集合的起始线帽 142 | 143 | 144 | 145 | 146 | 要显示数据集合的样式 147 | 148 | 149 | 150 | 151 | 清空所有加载的波形数据并清空显示 152 | 153 | 154 | 155 | 156 | 重新初始化X轴和Y轴坐标 157 | 158 | 159 | 160 | 161 | 更新显示 162 | 163 | 164 | 165 | 166 | 清空原有数据并加载一条波形数据 167 | 168 | X轴 169 | Y轴 170 | 线条颜色 171 | 线条宽度 172 | 线条连接点 173 | 线条起始线帽 174 | 线条样式 175 | 176 | 177 | 178 | 清空原有数据并加载一条波形数据,显示样式为线条 179 | 180 | X轴 181 | Y轴 182 | 线条颜色 183 | 线条宽度 184 | 185 | 186 | 187 | 在原有波形上添加一条线 188 | 不可动态循环 189 | 190 | X轴 191 | Y轴 192 | 线条颜色 193 | 线条宽度 194 | 线条连接点 195 | 线条起始线帽 196 | 线条样式 197 | 198 | 199 | 200 | 在原有波形上添加一条线,显示样式为线条 201 | 不可动态循环 202 | 203 | X轴 204 | Y轴 205 | 线条颜色 206 | 线条宽度 207 | 208 | 209 | 210 | 必需的设计器变量。 211 | 212 | 213 | 214 | 215 | 清理所有正在使用的资源。 216 | 217 | 如果应释放托管资源,为 true;否则为 false。 218 | 219 | 220 | 221 | 设计器支持所需的方法 - 不要 222 | 使用代码编辑器修改此方法的内容。 223 | 224 | 225 | 226 | 227 | 构造 228 | 初始化坐标值,坐标标定值,坐标标定权值 229 | 230 | 231 | 232 | 233 | 波形显示控件标题 234 | 235 | 236 | 237 | 238 | X轴名称 239 | 240 | 241 | 242 | 243 | Y轴名称 244 | 245 | 246 | 247 | 248 | 初始X轴起始坐标 249 | 250 | 251 | 252 | 253 | 初始X轴结束坐标 254 | 255 | 256 | 257 | 258 | 初始Y轴起始坐标 259 | 260 | 261 | 262 | 263 | 初始Y轴结束坐标 264 | 265 | 266 | 267 | 268 | 控件标题字体大小 269 | 270 | 271 | 272 | 273 | 控件标题位置 274 | 275 | 276 | 277 | 278 | 控件标题颜色 279 | 280 | 281 | 282 | 283 | 控件标题描边颜色 284 | 285 | 286 | 287 | 288 | 背景色渐进起始颜色 289 | 290 | 291 | 292 | 293 | 背景色渐进终止颜色 294 | 295 | 296 | 297 | 298 | 坐标线颜色 299 | 300 | 301 | 302 | 303 | 坐标值颜色 304 | 305 | 306 | 307 | 308 | 坐标标题颜色 309 | 310 | 311 | 312 | 313 | 网格线的透明度 314 | 315 | 316 | 317 | 318 | 网格线的颜色 319 | 320 | 321 | 322 | 323 | 波形显示区域背景色 324 | 325 | 326 | 327 | 328 | 工具栏背景色 329 | 330 | 331 | 332 | 333 | 工具栏按钮背景颜色 334 | 335 | 336 | 337 | 338 | 工具栏按钮前景选中颜色 339 | 340 | 341 | 342 | 343 | 工具栏按钮前景未选中颜色 344 | 345 | 346 | 347 | 348 | 标签说明框背景颜色 349 | 350 | 351 | 352 | 353 | 标签说明框文字颜色 354 | 355 | 356 | 357 | 358 | 放大选取框背景颜色 359 | 360 | 361 | 362 | 363 | 放大选取框按钮背景颜色 364 | 365 | 366 | 367 | 368 | 放大选取框按钮文字颜色 369 | 370 | 371 | 372 | 373 | 画图样式 374 | 375 | 376 | 377 | 378 | 线条 379 | 380 | 381 | 382 | 383 | 点 384 | 385 | 386 | 387 | 388 | 条形 389 | 390 | 391 | 392 | 393 | -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/1.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/10.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/11.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/12.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/13.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/14.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/15.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/16.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/17.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/18.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/19.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/2.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/20.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/21.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/22.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/23.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/24.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/25.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/26.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/27.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/28.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/29.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/3.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/30.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/31.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/32.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/33.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/34.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/35.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/36.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/37.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/38.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/4.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/5.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/6.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/7.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/8.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/picture/9.png -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/readme/read00.c: -------------------------------------------------------------------------------- 1 | void SCI_Send_Datas(UARTn uratn) 2 | { 3 | static unsigned short int send_data[3][8] = { { 0 }, { 0 }, { 0 } }; 4 | 5 | send_data[0][0] = (unsigned short int)(10); 6 | send_data[0][1] = (unsigned short int)(20); 7 | send_data[0][2] = (unsigned short int)(30); 8 | send_data[0][3] = (unsigned short int)(40); 9 | send_data[0][4] = (unsigned short int)(0); 10 | send_data[0][5] = (unsigned short int)(0); 11 | send_data[0][6] = (unsigned short int)(0); 12 | send_data[0][7] = (unsigned short int)(0); 13 | 14 | send_data[1][0] = (unsigned short int)(0); 15 | send_data[1][1] = (unsigned short int)(0); 16 | send_data[1][2] = (unsigned short int)(0); 17 | send_data[1][3] = (unsigned short int)(0); 18 | send_data[1][4] = (unsigned short int)(0); 19 | send_data[1][5] = (unsigned short int)(0); 20 | send_data[1][6] = (unsigned short int)(0); 21 | send_data[1][7] = (unsigned short int)(0); 22 | 23 | send_data[2][0] = (unsigned short int)(0); 24 | send_data[2][1] = (unsigned short int)(0); 25 | send_data[2][2] = (unsigned short int)(0); 26 | send_data[2][3] = (unsigned short int)(0); 27 | send_data[2][4] = (unsigned short int)(0); 28 | send_data[2][5] = (unsigned short int)(0); 29 | send_data[2][6] = (unsigned short int)(0); 30 | send_data[2][7] = (unsigned short int)(0); 31 | 32 | uart_putchar(uratn, 'S'); 33 | uart_putchar(uratn, 'T'); 34 | for (int i = 0; i < 3; i++) 35 | for (int j = 0; j < 8; j++) 36 | { 37 | uart_putchar(uratn, (unsigned char)(send_data[i][j] & 0x00ff)); 38 | uart_putchar(uratn, (unsigned char)(send_data[i][j] >> 8u)); 39 | } 40 | } -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/readme/read01.c: -------------------------------------------------------------------------------- 1 | //send ccd Data 2 | void SCI_Send_CCD(UARTn uratn, int ccdNum) 3 | { 4 | if (ccdNum != 1 && ccdNum != 2) 5 | return; 6 | uart_putchar(uratn, 255); 7 | uart_putchar(uratn, 255); 8 | uart_putchar(uratn, ccdNum);//number 9 | for (int i = 0; i < 128; i++) 10 | if (ccdData1[i] == 255) 11 | uart_putchar(uratn, 254); 12 | else 13 | uart_putchar(uratn, ccdData1[i]); 14 | if (ccdNum == 2) 15 | for (int i = 0; i < 128; i++) 16 | if (ccdData2[i] == 255) 17 | uart_putchar(uratn, 254); 18 | else 19 | uart_putchar(uratn, ccdData2[i]); 20 | } -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/readme/read02.c: -------------------------------------------------------------------------------- 1 | //send fireImage camera Data 2 | void SCI_Send_fireImage(UARTn uratn) 3 | { 4 | int H = 240, L = 320; 5 | //send "CAMERA" 6 | uart_putchar(uratn, 'C'); 7 | uart_putchar(uratn, 'A'); 8 | uart_putchar(uratn, 'M'); 9 | uart_putchar(uratn, 'E'); 10 | uart_putchar(uratn, 'R'); 11 | uart_putchar(uratn, 'A'); 12 | uart_putchar(uratn, (unsigned char)(H >> 8));//send Hang 13 | uart_putchar(uratn, (unsigned char)(H & 0x00FF)); 14 | uart_putchar(uratn, (unsigned char)(L >> 8));//send Lie 15 | uart_putchar(uratn, (unsigned char)(L & 0x00FF)); 16 | //send all data 17 | for (int i = 0; i < H; i++) 18 | for (int j = 0; j < L / 8; j++) 19 | uart_putchar(uratn, Image_fire[i][j]); 20 | } 21 | 22 | 23 | //send usual camera Data 24 | void SCI_Send_Image(UARTn uratn) 25 | { 26 | int H = 240, L = 320; 27 | //send "CAMERA" 28 | uart_putchar(uratn, 'C'); 29 | uart_putchar(uratn, 'A'); 30 | uart_putchar(uratn, 'M'); 31 | uart_putchar(uratn, 'E'); 32 | uart_putchar(uratn, 'R'); 33 | uart_putchar(uratn, 'A'); 34 | //send Hang 35 | uart_putchar(uratn, (unsigned char)(H >> 8)); 36 | uart_putchar(uratn, (unsigned char)(H & 0x00FF)); 37 | //send Lie 38 | uart_putchar(uratn, (unsigned char)(L >> 8)); 39 | uart_putchar(uratn, (unsigned char)(L & 0x00FF)); 40 | //send all data 41 | for (int i = 0; i < H; i++) 42 | for (int j = 0; j < L; j++) 43 | uart_putchar(uratn, cameraData[i][j]); 44 | } -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/readme/read10.c: -------------------------------------------------------------------------------- 1 | void SCI_Send_Datas() 2 | { 3 | int i, j; 4 | static unsigned int send_data[3][8] = { { 0 }, { 0 }, { 0 } }; 5 | 6 | send_data[0][0] = (unsigned int)(10); 7 | send_data[0][1] = (unsigned int)(20); 8 | send_data[0][2] = (unsigned int)(30); 9 | send_data[0][3] = (unsigned int)(40); 10 | send_data[0][4] = (unsigned int)(0); 11 | send_data[0][5] = (unsigned int)(0); 12 | send_data[0][6] = (unsigned int)(0); 13 | send_data[0][7] = (unsigned int)(0); 14 | 15 | send_data[1][0] = (unsigned int)(0); 16 | send_data[1][1] = (unsigned int)(0); 17 | send_data[1][2] = (unsigned int)(0); 18 | send_data[1][3] = (unsigned int)(0); 19 | send_data[1][4] = (unsigned int)(0); 20 | send_data[1][5] = (unsigned int)(0); 21 | send_data[1][6] = (unsigned int)(0); 22 | send_data[1][7] = (unsigned int)(0); 23 | 24 | send_data[2][0] = (unsigned int)(0); 25 | send_data[2][1] = (unsigned int)(0); 26 | send_data[2][2] = (unsigned int)(0); 27 | send_data[2][3] = (unsigned int)(0); 28 | send_data[2][4] = (unsigned int)(0); 29 | send_data[2][5] = (unsigned int)(0); 30 | send_data[2][6] = (unsigned int)(0); 31 | send_data[2][7] = (unsigned int)(0); 32 | 33 | while (AS1_SendChar('S')); 34 | while (AS1_SendChar('T')); 35 | for (i = 0; i < 3; i++) 36 | for (j = 0; j < 8; j++) 37 | { 38 | while (AS1_SendChar((unsigned char)(send_data[i][j] & 0x00ff))); 39 | while (AS1_SendChar((unsigned char)(send_data[i][j] >> 8u))); 40 | } 41 | } -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/readme/read11.c: -------------------------------------------------------------------------------- 1 | //send ccd Data 2 | void SCI_Send_CCD(int ccdNum) 3 | { 4 | int i; 5 | if (ccdNum != 1 && ccdNum != 2) 6 | return; 7 | while (AS1_SendChar(255)); 8 | while (AS1_SendChar(255)); 9 | while (AS1_SendChar(ccdNum);//number 10 | for (int i = 0; i < 128; i++) 11 | if (ccdData1[i] == 255) 12 | while (AS1_SendChar(254)); 13 | else 14 | while (AS1_SendChar(ccdData1[i])); 15 | if (ccdNum == 2) 16 | for (int i = 0; i < 128; i++) 17 | if (ccdData2[i] == 255) 18 | while (AS1_SendChar(254)); 19 | else 20 | while (AS1_SendChar(ccdData2[i])); 21 | } -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/readme/read12.c: -------------------------------------------------------------------------------- 1 | //send fireImage camera Data 2 | void SCI_Send_fireImage() 3 | { 4 | int i, j; 5 | int H = 240, L = 320; 6 | //send "CAMERA" 7 | while (AS1_SendChar('C')); 8 | while (AS1_SendChar('A')); 9 | while (AS1_SendChar('M')); 10 | while (AS1_SendChar('E')); 11 | while (AS1_SendChar('R')); 12 | while (AS1_SendChar('A')); 13 | while (AS1_SendChar((unsigned char)(H >> 8)));//send Hang 14 | while (AS1_SendChar((unsigned char)(H & 0x00FF))); 15 | while (AS1_SendChar((unsigned char)(L >> 8)));//send Lie 16 | while (AS1_SendChar((unsigned char)(L & 0x00FF))); 17 | //send all data 18 | for (i = 0; i < H; i++) 19 | for (j = 0; j < L / 8; j++) 20 | while (AS1_SendChar(Image_fire[i][j])); 21 | } 22 | 23 | 24 | //send usual camera Data 25 | void SCI_Send_Image() 26 | { 27 | int i, j; 28 | int H = 240, L = 320; 29 | //send "CAMERA" 30 | while (AS1_SendChar('C'); 31 | while (AS1_SendChar('A'); 32 | while (AS1_SendChar('M'); 33 | while (AS1_SendChar('E'); 34 | while (AS1_SendChar('R'); 35 | while (AS1_SendChar('A'); 36 | //send Hang 37 | while (AS1_SendChar((unsigned char)(H >> 8))); 38 | while (AS1_SendChar((unsigned char)(H & 0x00FF))); 39 | //send Lie 40 | while (AS1_SendChar((unsigned char)(L >> 8))); 41 | while (AS1_SendChar((unsigned char)(L & 0x00FF))); 42 | //send all data 43 | for (i = 0; i < H; i++) 44 | for (j = 0; j < L; j++) 45 | while (AS1_SendChar(cameraData[i][j])); 46 | } -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/自定义发送.txt: -------------------------------------------------------------------------------- 1 | 8 2 | 3 | P=P+1 4 | a 5 | P=P-1 6 | b 7 | P=P+0.1 8 | c 9 | P=P-0.1 10 | d 11 | D=D+1 12 | e 13 | D=D-1 14 | f 15 | D=D+0.1 16 | g 17 | D=D-0.1 18 | h 19 | ***************** 20 | ***************** 21 | ***************** 22 | ***************** 23 | ***************** 24 | ***************** 25 | ***************** 26 | ***************** 27 | ***************** 28 | ***************** -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/bin/Release/说明.txt: -------------------------------------------------------------------------------- 1 | //如果有疑问请联系qq:912385457 2 | //若果想定制专属上位机请联系。价钱面议。。。 3 | 4 | 一、3*8画图功能的单片机函数(K60+XS128) 5 | //以下为K60程序 ,重要的就是send_data的赋值和send_num的赋值 6 | void SCISend_to_PIDDebug(UARTn uratn) 7 | { 8 | //1.所用数据 9 | static unsigned char i,j; 10 | static unsigned short int send_data[3][8]={{0},{0},{0}};//3幅图,每幅最多8条曲线,一条曲线是1个数 11 | static unsigned char send_num[3]={3,0,0}; //每幅图多少条曲线 12 | 13 | //2.将想发的变量赋值给send1_data,send2_data,send3_data,就是把10,20,30这些数字改成变量就行。不发的数据要注释(省时间) 14 | send_data[0][0]=(unsigned short int)(10); 15 | send_data[0][1]=(unsigned short int)(20); 16 | send_data[0][2]=(unsigned short int)(30); 17 | /*send_data[0][3]=(unsigned short int)(40); 18 | send_data[0][4]=(unsigned short int)(-10); 19 | send_data[0][5]=(unsigned short int)(-20); 20 | send_data[0][6]=(unsigned short int)(-30); 21 | send_data[0][7]=(unsigned short int)(-40); 22 | 23 | send_data[1][0]=(unsigned short int)(100); 24 | send_data[1][1]=(unsigned short int)(200); 25 | send_data[1][2]=(unsigned short int)(300); 26 | send_data[1][3]=(unsigned short int)(400); 27 | send_data[1][4]=(unsigned short int)(-100); 28 | send_data[1][5]=(unsigned short int)(-200); 29 | send_data[1][6]=(unsigned short int)(-300); 30 | send_data[1][7]=(unsigned short int)(-400); 31 | 32 | send_data[2][0]=(unsigned short int)(10000); 33 | send_data[2][1]=(unsigned short int)(20000); 34 | send_data[2][2]=(unsigned short int)(30000); 35 | send_data[2][3]=(unsigned short int)(40000); 36 | send_data[2][4]=(unsigned short int)(-10000); 37 | send_data[2][5]=(unsigned short int)(-20000); 38 | send_data[2][6]=(unsigned short int)(-30000); 39 | send_data[2][7]=(unsigned short int)(-40000);*/ 40 | 41 | //3.这三幅图的字头,start的前两个字母 42 | //理论上误码率约为1/65536=0.0000152587890625,应该这么算吧,就是这么个意思,不准确 43 | //如果是处女座有强迫症可以在单片机上加上过滤,或者找我在软件上加上更加严格的字头 44 | uart_putchar(uratn,'S'); 45 | uart_putchar(uratn,'T'); 46 | 47 | //4.发送数据 48 | for(i=0;i < 3;i++) 49 | for(j=0;j < send_num[i];j++) 50 | { 51 | uart_putchar(uratn,send_data[i][j]); 52 | uart_putchar(uratn,send_data[i][j]>>8u); 53 | } 54 | } 55 | 56 | //以下为XS128程序,重要的就是send_data的赋值和send_num的赋值 57 | void SCISend_to_PIDDebug() 58 | { 59 | //1.所用数据 60 | static unsigned char i,j; 61 | static unsigned int send_data[3][8]={{0},{0},{0}};//3幅图,每幅最多8条曲线,一条曲线是1个数 62 | static unsigned char send_num[3]={3,0,0}; //每幅图多少条曲线 63 | 64 | //2.将想发的变量赋值给send1_data,send2_data,send3_data,就是把10,20,30这些数字改成变量就行。不发的数据要注释(省时间) 65 | send_data[0][0]=(unsigned int)(10); 66 | send_data[0][1]=(unsigned int)(20); 67 | send_data[0][2]=(unsigned int)(30); 68 | /*send_data[0][3]=(unsigned int)(40); 69 | send_data[0][4]=(unsigned int)(-10); 70 | send_data[0][5]=(unsigned int)(-20); 71 | send_data[0][6]=(unsigned int)(-30); 72 | send_data[0][7]=(unsigned int)(-40); 73 | 74 | send_data[1][0]=(unsigned int)(100); 75 | send_data[1][1]=(unsigned int)(200); 76 | send_data[1][2]=(unsigned int)(300); 77 | send_data[1][3]=(unsigned int)(400); 78 | send_data[1][4]=(unsigned int)(-100); 79 | send_data[1][5]=(unsigned int)(-200); 80 | send_data[1][6]=(unsigned int)(-300); 81 | send_data[1][7]=(unsigned int)(-400); 82 | 83 | send_data[2][0]=(unsigned int)(10000); 84 | send_data[2][1]=(unsigned int)(20000); 85 | send_data[2][2]=(unsigned int)(30000); 86 | send_data[2][3]=(unsigned int)(40000); 87 | send_data[2][4]=(unsigned int)(-10000); 88 | send_data[2][5]=(unsigned int)(-20000); 89 | send_data[2][6]=(unsigned int)(-30000); 90 | send_data[2][7]=(unsigned int)(-40000);*/ 91 | 92 | //3.这三幅图的字头,start的前两个字母 93 | //理论上误码率约为1/65536=0.0000152587890625,应该这么算吧,就是这么个意思,不准确 94 | //如果是处女座有强迫症可以在单片机上加上过滤,或者找我在软件上加上更加严格的字头 95 | uart_putchar('S'); 96 | uart_putchar('T'); 97 | 98 | //4.发送数据 99 | for(i=0;i < 3;i++) 100 | for(j=0;j < send_num[i];j++) 101 | { 102 | uart_putchar(send_data[i][j]); 103 | uart_putchar(send_data[i][j]>>8u); 104 | } 105 | } 106 | 107 | 108 | 二、ccd画图功能的单片机函数(k60和xs128一样) 109 | void Send_ONEccddata_to_PC()//发送一个ccd的数据,在上位机上也要进行选择,ccddata0为用户自己定义的ccd数据全局变量 110 | { 111 | //字头为0和255 112 | uart_putchar(0); 113 | uart_putchar(255); 114 | for(int i=0;i<128;i++) 115 | uart_putchar(ccddata0[i]); 116 | } 117 | void Send_TWOccddata_to_PC()//发送两个ccd的数据,在上位机上也要进行选择,ccddata0和ccddata1为用户自己定义的ccd数据全局变量 118 | { 119 | //字头为0和255 120 | uart_putchar(0); 121 | uart_putchar(255); 122 | for(int i=0;i<128;i++) 123 | uart_putchar(ccddata0[i]); 124 | for(int i=0;i<128;i++) 125 | uart_putchar(ccddata1[i]); 126 | } 127 | 128 | 三、摄像头采集功能,单片机函数 129 | void Send_Camera_Image_to_PC()//Image为用户自己定义的摄像头数据全局变量 130 | { 131 | //字头255 132 | uart_putchar(255); 133 | for(int i=0;i<128;i++) 134 | for(int j=0;j<128;j++) 135 | { 136 | if(Image[i][j]==255) 137 | uart_putchar(254); 138 | else 139 | uart_putchar(Image[i][j]); 140 | } 141 | } 142 | 143 | -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/WindowsFormsApplication1.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/WindowsFormsApplication1.Form1.resources -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/WindowsFormsApplication1.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/WindowsFormsApplication1.Properties.Resources.resources -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/WindowsFormsApplication1.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\space\Desktop\Cal carangle\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\WindowsFormsApplication1.exe 2 | C:\Users\space\Desktop\Cal carangle\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\WindowsFormsApplication1.pdb 3 | C:\Users\space\Desktop\Cal carangle\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.Form1.resources 4 | C:\Users\space\Desktop\Cal carangle\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.Properties.Resources.resources 5 | C:\Users\space\Desktop\Cal carangle\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.csproj.GenerateResource.Cache 6 | C:\Users\space\Desktop\Cal carangle\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.exe 7 | C:\Users\space\Desktop\Cal carangle\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.pdb 8 | C:\Users\space\Desktop\Cal carangle\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.csprojResolveAssemblyReference.cache 9 | C:\Users\space\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\WindowsFormsApplication1.exe 10 | C:\Users\space\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\WindowsFormsApplication1.pdb 11 | C:\Users\space\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.Form1.resources 12 | C:\Users\space\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.Properties.Resources.resources 13 | C:\Users\space\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.csproj.GenerateResource.Cache 14 | C:\Users\space\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.exe 15 | C:\Users\space\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.pdb 16 | C:\Users\space\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\ZGraph.dll 17 | C:\Users\space\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\ZGraph.xml 18 | C:\Users\space\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.csprojResolveAssemblyReference.cache 19 | C:\Users\xuxu\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.exe 20 | C:\Users\xuxu\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.pdb 21 | C:\Users\xuxu\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\WindowsFormsApplication1.exe 22 | C:\Users\xuxu\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\WindowsFormsApplication1.pdb 23 | C:\Users\xuxu\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\ZGraph.dll 24 | C:\Users\xuxu\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\ZGraph.xml 25 | C:\Users\xuxu\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.csprojResolveAssemblyReference.cache 26 | C:\Users\xuxu\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.Form1.resources 27 | C:\Users\xuxu\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.Properties.Resources.resources 28 | C:\Users\xuxu\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.csproj.GenerateResource.Cache 29 | C:\Users\xuxu\Desktop\LingTest2.1\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.exe 30 | C:\Users\xuxu\Desktop\LingTest2.1\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.pdb 31 | C:\Users\xuxu\Desktop\LingTest2.1\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\WindowsFormsApplication1.exe 32 | C:\Users\xuxu\Desktop\LingTest2.1\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\WindowsFormsApplication1.pdb 33 | C:\Users\xuxu\Desktop\LingTest2.1\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\ZGraph.dll 34 | C:\Users\xuxu\Desktop\LingTest2.1\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\ZGraph.xml 35 | C:\Users\xuxu\Desktop\LingTest2.1\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.csprojResolveAssemblyReference.cache 36 | C:\Users\xuxu\Desktop\LingTest2.1\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.Form1.resources 37 | C:\Users\xuxu\Desktop\LingTest2.1\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.Properties.Resources.resources 38 | C:\Users\xuxu\Desktop\LingTest2.1\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.csproj.GenerateResource.Cache 39 | C:\Users\space\Desktop\LingTest2.1\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.exe 40 | C:\Users\space\Desktop\LingTest2.1\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.pdb 41 | C:\Users\space\Desktop\LingTest2.1\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\WindowsFormsApplication1.exe 42 | C:\Users\space\Desktop\LingTest2.1\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\WindowsFormsApplication1.pdb 43 | C:\Users\space\Desktop\LingTest2.1\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\ZGraph.dll 44 | C:\Users\space\Desktop\LingTest2.1\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\ZGraph.xml 45 | C:\Users\space\Desktop\LingTest2.1\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.csprojResolveAssemblyReference.cache 46 | C:\Users\space\Desktop\LingTest2.1\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.Form1.resources 47 | C:\Users\space\Desktop\LingTest2.1\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.Properties.Resources.resources 48 | C:\Users\space\Desktop\LingTest2.1\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.csproj.GenerateResource.Cache 49 | C:\Users\space\Desktop\LingTestV2.2(有摄像头图像显示)\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.exe 50 | C:\Users\space\Desktop\LingTestV2.2(有摄像头图像显示)\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.pdb 51 | C:\Users\space\Desktop\LingTestV2.2(有摄像头图像显示)\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.csprojResolveAssemblyReference.cache 52 | C:\Users\space\Desktop\LingTestV2.2(有摄像头图像显示)\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.Form1.resources 53 | C:\Users\space\Desktop\LingTestV2.2(有摄像头图像显示)\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.Properties.Resources.resources 54 | C:\Users\space\Desktop\LingTestV2.2(有摄像头图像显示)\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.csproj.GenerateResource.Cache 55 | C:\Users\space\Desktop\LingTestV2.2(有摄像头图像显示)\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\WindowsFormsApplication1.exe 56 | C:\Users\space\Desktop\LingTestV2.2(有摄像头图像显示)\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\WindowsFormsApplication1.pdb 57 | C:\Users\space\Desktop\LingTestV2.2(有摄像头图像显示)\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\ZGraph.dll 58 | C:\Users\space\Desktop\LingTestV2.2(有摄像头图像显示)\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\ZGraph.xml 59 | C:\Users\xuxu\Desktop\LingTestV2.2(有摄像头图像显示)\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.exe 60 | C:\Users\xuxu\Desktop\LingTestV2.2(有摄像头图像显示)\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.pdb 61 | C:\Users\xuxu\Desktop\LingTestV2.2(有摄像头图像显示)\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\WindowsFormsApplication1.exe 62 | C:\Users\xuxu\Desktop\LingTestV2.2(有摄像头图像显示)\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\WindowsFormsApplication1.pdb 63 | C:\Users\xuxu\Desktop\LingTestV2.2(有摄像头图像显示)\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\ZGraph.dll 64 | C:\Users\xuxu\Desktop\LingTestV2.2(有摄像头图像显示)\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\ZGraph.xml 65 | C:\Users\xuxu\Desktop\LingTestV2.2(有摄像头图像显示)\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.csprojResolveAssemblyReference.cache 66 | C:\Users\xuxu\Desktop\LingTestV2.2(有摄像头图像显示)\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.Form1.resources 67 | C:\Users\xuxu\Desktop\LingTestV2.2(有摄像头图像显示)\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.Properties.Resources.resources 68 | C:\Users\xuxu\Desktop\LingTestV2.2(有摄像头图像显示)\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.csproj.GenerateResource.Cache 69 | C:\Users\xuxu\Desktop\LingTestV3.0\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.exe 70 | C:\Users\xuxu\Desktop\LingTestV3.0\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.pdb 71 | C:\Users\xuxu\Desktop\LingTestV3.0\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\WindowsFormsApplication1.exe 72 | C:\Users\xuxu\Desktop\LingTestV3.0\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\WindowsFormsApplication1.pdb 73 | C:\Users\xuxu\Desktop\LingTestV3.0\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\ZGraph.dll 74 | C:\Users\xuxu\Desktop\LingTestV3.0\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\ZGraph.xml 75 | C:\Users\xuxu\Desktop\LingTestV3.0\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.csprojResolveAssemblyReference.cache 76 | C:\Users\xuxu\Desktop\LingTestV3.0\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.Form1.resources 77 | C:\Users\xuxu\Desktop\LingTestV3.0\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.Properties.Resources.resources 78 | C:\Users\xuxu\Desktop\LingTestV3.0\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.csproj.GenerateResource.Cache 79 | C:\Users\xuxu\Desktop\LingTestV3.0(加摄像头+ccd)\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.exe 80 | C:\Users\xuxu\Desktop\LingTestV3.0(加摄像头+ccd)\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.pdb 81 | C:\Users\xuxu\Desktop\LingTestV3.0(加摄像头+ccd)\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\WindowsFormsApplication1.exe 82 | C:\Users\xuxu\Desktop\LingTestV3.0(加摄像头+ccd)\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\WindowsFormsApplication1.pdb 83 | C:\Users\xuxu\Desktop\LingTestV3.0(加摄像头+ccd)\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\ZGraph.dll 84 | C:\Users\xuxu\Desktop\LingTestV3.0(加摄像头+ccd)\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\ZGraph.xml 85 | C:\Users\xuxu\Desktop\LingTestV3.0(加摄像头+ccd)\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.csprojResolveAssemblyReference.cache 86 | C:\Users\xuxu\Desktop\LingTestV3.0(加摄像头+ccd)\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.Form1.resources 87 | C:\Users\xuxu\Desktop\LingTestV3.0(加摄像头+ccd)\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.Properties.Resources.resources 88 | C:\Users\xuxu\Desktop\LingTestV3.0(加摄像头+ccd)\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.csproj.GenerateResource.Cache 89 | C:\Users\xuxu\Desktop\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.exe 90 | C:\Users\xuxu\Desktop\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.pdb 91 | C:\Users\xuxu\Desktop\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\WindowsFormsApplication1.exe 92 | C:\Users\xuxu\Desktop\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\WindowsFormsApplication1.pdb 93 | C:\Users\xuxu\Desktop\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\ZGraph.dll 94 | C:\Users\xuxu\Desktop\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\ZGraph.xml 95 | C:\Users\xuxu\Desktop\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.Form1.resources 96 | C:\Users\xuxu\Desktop\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.Properties.Resources.resources 97 | C:\Users\xuxu\Desktop\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.csproj.GenerateResource.Cache 98 | C:\Users\xuxu\Desktop\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.csprojResolveAssemblyReference.cache 99 | -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/WindowsFormsApplication1.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/WindowsFormsApplication1.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/WindowsFormsApplication1.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/WindowsFormsApplication1.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/WindowsFormsApplication1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/WindowsFormsApplication1.exe -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/WindowsFormsApplication1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Debug/WindowsFormsApplication1.pdb -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Release/WindowsFormsApplication1.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Release/WindowsFormsApplication1.Form1.resources -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Release/WindowsFormsApplication1.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Release/WindowsFormsApplication1.Properties.Resources.resources -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Release/WindowsFormsApplication1.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\space\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\bin\Release\WindowsFormsApplication1.exe 2 | C:\Users\space\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\bin\Release\WindowsFormsApplication1.pdb 3 | C:\Users\space\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.Form1.resources 4 | C:\Users\space\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.Properties.Resources.resources 5 | C:\Users\space\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.csproj.GenerateResource.Cache 6 | C:\Users\space\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.exe 7 | C:\Users\space\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.pdb 8 | C:\Users\space\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\bin\Release\ZGraph.dll 9 | C:\Users\space\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\bin\Release\ZGraph.xml 10 | C:\Users\xuxu\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.exe 11 | C:\Users\xuxu\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.pdb 12 | C:\Users\xuxu\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\bin\Release\WindowsFormsApplication1.exe 13 | C:\Users\xuxu\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\bin\Release\WindowsFormsApplication1.pdb 14 | C:\Users\xuxu\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\bin\Release\ZGraph.dll 15 | C:\Users\xuxu\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\bin\Release\ZGraph.xml 16 | C:\Users\xuxu\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.Form1.resources 17 | C:\Users\xuxu\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.Properties.Resources.resources 18 | C:\Users\xuxu\Desktop\LingTest2.0\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.csproj.GenerateResource.Cache 19 | C:\Users\xuxu\Desktop\LingTest2.1\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.exe 20 | C:\Users\xuxu\Desktop\LingTest2.1\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.pdb 21 | C:\Users\xuxu\Desktop\LingTest2.1\WindowsFormsApplication1\WindowsFormsApplication1\bin\Release\WindowsFormsApplication1.exe 22 | C:\Users\xuxu\Desktop\LingTest2.1\WindowsFormsApplication1\WindowsFormsApplication1\bin\Release\WindowsFormsApplication1.pdb 23 | C:\Users\xuxu\Desktop\LingTest2.1\WindowsFormsApplication1\WindowsFormsApplication1\bin\Release\ZGraph.dll 24 | C:\Users\xuxu\Desktop\LingTest2.1\WindowsFormsApplication1\WindowsFormsApplication1\bin\Release\ZGraph.xml 25 | C:\Users\xuxu\Desktop\LingTest2.1\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.csprojResolveAssemblyReference.cache 26 | C:\Users\xuxu\Desktop\LingTest2.1\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.Form1.resources 27 | C:\Users\xuxu\Desktop\LingTest2.1\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.Properties.Resources.resources 28 | C:\Users\xuxu\Desktop\LingTest2.1\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.csproj.GenerateResource.Cache 29 | C:\Users\space\Desktop\LingTest2.1\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.exe 30 | C:\Users\space\Desktop\LingTest2.1\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.pdb 31 | C:\Users\space\Desktop\LingTestV2.2(有摄像头图像显示)\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.exe 32 | C:\Users\space\Desktop\LingTestV2.2(有摄像头图像显示)\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.pdb 33 | C:\Users\space\Desktop\LingTestV2.2(有摄像头图像显示)\WindowsFormsApplication1\WindowsFormsApplication1\bin\Release\WindowsFormsApplication1.exe 34 | C:\Users\space\Desktop\LingTestV2.2(有摄像头图像显示)\WindowsFormsApplication1\WindowsFormsApplication1\bin\Release\WindowsFormsApplication1.pdb 35 | C:\Users\space\Desktop\LingTestV2.2(有摄像头图像显示)\WindowsFormsApplication1\WindowsFormsApplication1\bin\Release\ZGraph.dll 36 | C:\Users\space\Desktop\LingTestV2.2(有摄像头图像显示)\WindowsFormsApplication1\WindowsFormsApplication1\bin\Release\ZGraph.xml 37 | C:\Users\space\Desktop\LingTestV2.2(有摄像头图像显示)\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.csprojResolveAssemblyReference.cache 38 | C:\Users\space\Desktop\LingTestV2.2(有摄像头图像显示)\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.Form1.resources 39 | C:\Users\space\Desktop\LingTestV2.2(有摄像头图像显示)\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.Properties.Resources.resources 40 | C:\Users\space\Desktop\LingTestV2.2(有摄像头图像显示)\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.csproj.GenerateResource.Cache 41 | C:\Users\xuxu\Desktop\LingTestV2.2(有摄像头图像显示)\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.exe 42 | C:\Users\xuxu\Desktop\LingTestV2.2(有摄像头图像显示)\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.pdb 43 | C:\Users\xuxu\Desktop\LingTestV3.0\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.exe 44 | C:\Users\xuxu\Desktop\LingTestV3.0\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.pdb 45 | C:\Users\xuxu\Desktop\LingTestV3.0\WindowsFormsApplication1\WindowsFormsApplication1\bin\Release\WindowsFormsApplication1.exe 46 | C:\Users\xuxu\Desktop\LingTestV3.0\WindowsFormsApplication1\WindowsFormsApplication1\bin\Release\WindowsFormsApplication1.pdb 47 | C:\Users\xuxu\Desktop\LingTestV3.0\WindowsFormsApplication1\WindowsFormsApplication1\bin\Release\ZGraph.dll 48 | C:\Users\xuxu\Desktop\LingTestV3.0\WindowsFormsApplication1\WindowsFormsApplication1\bin\Release\ZGraph.xml 49 | C:\Users\xuxu\Desktop\LingTestV3.0\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.csprojResolveAssemblyReference.cache 50 | C:\Users\xuxu\Desktop\LingTestV3.0\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.Form1.resources 51 | C:\Users\xuxu\Desktop\LingTestV3.0\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.Properties.Resources.resources 52 | C:\Users\xuxu\Desktop\LingTestV3.0\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.csproj.GenerateResource.Cache 53 | C:\Users\xuxu\Desktop\LingTestV3.0(加摄像头+ccd)\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.exe 54 | C:\Users\xuxu\Desktop\LingTestV3.0(加摄像头+ccd)\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.pdb 55 | C:\Users\xuxu\Desktop\LingTestV3.0(加摄像头+ccd)\WindowsFormsApplication1\WindowsFormsApplication1\bin\Release\WindowsFormsApplication1.exe 56 | C:\Users\xuxu\Desktop\LingTestV3.0(加摄像头+ccd)\WindowsFormsApplication1\WindowsFormsApplication1\bin\Release\WindowsFormsApplication1.pdb 57 | C:\Users\xuxu\Desktop\LingTestV3.0(加摄像头+ccd)\WindowsFormsApplication1\WindowsFormsApplication1\bin\Release\ZGraph.dll 58 | C:\Users\xuxu\Desktop\LingTestV3.0(加摄像头+ccd)\WindowsFormsApplication1\WindowsFormsApplication1\bin\Release\ZGraph.xml 59 | C:\Users\xuxu\Desktop\LingTestV3.0(加摄像头+ccd)\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.csprojResolveAssemblyReference.cache 60 | C:\Users\xuxu\Desktop\LingTestV3.0(加摄像头+ccd)\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.Form1.resources 61 | C:\Users\xuxu\Desktop\LingTestV3.0(加摄像头+ccd)\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.Properties.Resources.resources 62 | C:\Users\xuxu\Desktop\LingTestV3.0(加摄像头+ccd)\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.csproj.GenerateResource.Cache 63 | C:\Users\xuxu\Desktop\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.exe 64 | C:\Users\xuxu\Desktop\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.pdb 65 | C:\Users\xuxu\Desktop\WindowsFormsApplication1\WindowsFormsApplication1\bin\Release\WindowsFormsApplication1.exe 66 | C:\Users\xuxu\Desktop\WindowsFormsApplication1\WindowsFormsApplication1\bin\Release\WindowsFormsApplication1.pdb 67 | C:\Users\xuxu\Desktop\WindowsFormsApplication1\WindowsFormsApplication1\bin\Release\ZGraph.dll 68 | C:\Users\xuxu\Desktop\WindowsFormsApplication1\WindowsFormsApplication1\bin\Release\ZGraph.xml 69 | C:\Users\xuxu\Desktop\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.csprojResolveAssemblyReference.cache 70 | C:\Users\xuxu\Desktop\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.Form1.resources 71 | C:\Users\xuxu\Desktop\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.Properties.Resources.resources 72 | C:\Users\xuxu\Desktop\WindowsFormsApplication1\WindowsFormsApplication1\obj\x86\Release\WindowsFormsApplication1.csproj.GenerateResource.Cache 73 | -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Release/WindowsFormsApplication1.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Release/WindowsFormsApplication1.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Release/WindowsFormsApplication1.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Release/WindowsFormsApplication1.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Release/WindowsFormsApplication1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Release/WindowsFormsApplication1.exe -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Release/WindowsFormsApplication1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/obj/x86/Release/WindowsFormsApplication1.pdb -------------------------------------------------------------------------------- /WindowsFormsApplication1/WindowsFormsApplication1/文件名.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdongxuking61/C-sharp_PC2MCU_Draw/9a0a557f6c9bd406367e072a43ccd6f8beb602ef/WindowsFormsApplication1/WindowsFormsApplication1/文件名.ico --------------------------------------------------------------------------------