在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → C# 开源组态

C# 开源组态

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:15.52M
  • 下载次数:102
  • 浏览次数:1187
  • 发布时间:2020-10-28
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
C# 工控类开源组态软件,涉及到西门子、modbus rtu、TCP等通讯驱动
【实例截图】
【核心代码】
SharpSCADA-master
└── SharpSCADA-master
├── Document
│   ├── 设计流程.doc
│   └── 部署流程.doc
├── LICENSE
├── README.md
├── SCADA
│   ├── Database
│   │   ├── db2008.bak
│   │   ├── db2014.bak
│   │   ├── Receiving1.csv
│   │   ├── Receving2.csv
│   │   ├── script.sql
│   │   └── test.opf
│   ├── DataConfig
│   │   ├── client.xml
│   │   ├── host.cfg
│   │   └── server.xml
│   ├── dll
│   │   ├── ClientDriver.dll
│   │   ├── DataHelper.dll
│   │   ├── DataService.dll
│   │   ├── DynamicDataDisplay.dll
│   │   ├── FileDriver.dll
│   │   ├── ModbusDriver.dll
│   │   ├── OPCDriver.dll
│   │   ├── OPCLib.dll
│   │   └── WPFToolkit.Extended.dll
│   ├── Example
│   │   ├── BatchCommon.dll
│   │   ├── BatchCoreTest.exe
│   │   ├── BatchCoreTest.exe.config
│   │   ├── ClientDriver.dll
│   │   ├── CoreTest.exe
│   │   ├── DataHelper.dll
│   │   ├── DataService.dll
│   │   ├── DynamicDataDisplay.dll
│   │   ├── HMIControl.dll
│   │   ├── Microsoft.Expression.Controls.dll
│   │   ├── Microsoft.Expression.Controls.xml
│   │   ├── Microsoft.Expression.Drawing.dll
│   │   ├── Microsoft.Expression.Drawing.xml
│   │   ├── Microsoft.Expression.Interactions.dll
│   │   ├── Microsoft.Expression.Interactions.xml
│   │   ├── Microsoft.ReportViewer.Common.dll
│   │   ├── Microsoft.ReportViewer.WinForms.dll
│   │   ├── Microsoft.ReportViewer.WinForms.xml
│   │   ├── System.Windows.Interactivity.dll
│   │   ├── System.Windows.Interactivity.xml
│   │   └── WPFToolkit.Extended.dll
│   ├── Program
│   │   ├── BatchCoreService
│   │   │   ├── App.config
│   │   │   ├── BatchCoreService.cs
│   │   │   ├── BatchCoreService.csproj
│   │   │   ├── BatchCoreService.Designer.cs
│   │   │   ├── BatchCoreService.resx
│   │   │   ├── bin
│   │   │   │   ├── Debug
│   │   │   │   │   ├── App.config
│   │   │   │   │   ├── BatchCoreService.exe
│   │   │   │   │   ├── BatchCoreService.exe.config
│   │   │   │   │   ├── BatchCoreService.vshost.exe
│   │   │   │   │   ├── BatchCoreService.vshost.exe.config
│   │   │   │   │   ├── BatchCoreService.vshost.exe.manifest
│   │   │   │   │   ├── ClientDriver.dll
│   │   │   │   │   ├── DataHelper.dll
│   │   │   │   │   └── DataService.dll
│   │   │   │   └── Release
│   │   │   │   ├── App.config
│   │   │   │   ├── BatchCommon.dll
│   │   │   │   ├── BatchCoreService.exe
│   │   │   │   ├── BatchCoreService.exe.config
│   │   │   │   ├── BatchCoreService.InstallLog
│   │   │   │   ├── BatchCoreService.InstallState
│   │   │   │   ├── BatchCoreService.vshost.exe
│   │   │   │   ├── BatchCoreService.vshost.exe.config
│   │   │   │   ├── BatchCoreService.vshost.exe.manifest
│   │   │   │   ├── ClientDriver.dll
│   │   │   │   ├── DataHelper.dll
│   │   │   │   └── DataService.dll
│   │   │   ├── DAService.cs
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   ├── Debug
│   │   │   │   │   ├── BatchCoreService.BatchCoreService.resources
│   │   │   │   │   ├── BatchCoreService.csproj.FileListAbsolute.txt
│   │   │   │   │   ├── BatchCoreService.exe
│   │   │   │   │   └── BatchCoreService.ProjectInstaller.resources
│   │   │   │   └── Release
│   │   │   │   ├── BatchCoreService.BatchCoreService.resources
│   │   │   │   ├── BatchCoreService.csproj.FileListAbsolute.txt
│   │   │   │   ├── BatchCoreService.exe
│   │   │   │   ├── BatchCoreService.ProjectInstaller.resources
│   │   │   │   └── build.force
│   │   │   ├── Program.cs
│   │   │   ├── ProjectInstaller.cs
│   │   │   ├── ProjectInstaller.Designer.cs
│   │   │   ├── ProjectInstaller.resx
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   └── SqlMapping.cs
│   │   ├── BatchCoreTest
│   │   │   ├── App.config
│   │   │   ├── BatchCoreTest.csproj
│   │   │   ├── bin
│   │   │   │   ├── Debug
│   │   │   │   │   ├── BatchCoreTest.exe
│   │   │   │   │   ├── BatchCoreTest.exe.config
│   │   │   │   │   ├── BatchCoreTest.vshost.exe
│   │   │   │   │   ├── BatchCoreTest.vshost.exe.config
│   │   │   │   │   ├── BatchCoreTest.vshost.exe.manifest
│   │   │   │   │   ├── ClientDriver.dll
│   │   │   │   │   ├── DataHelper.dll
│   │   │   │   │   └── DataService.dll
│   │   │   │   └── Release
│   │   │   │   ├── AsyncClientDriver.dll
│   │   │   │   ├── BatchCommon.dll
│   │   │   │   ├── BatchCoreTest.exe
│   │   │   │   ├── BatchCoreTest.exe.config
│   │   │   │   ├── BatchCoreTest.vshost.exe
│   │   │   │   ├── BatchCoreTest.vshost.exe.config
│   │   │   │   ├── BatchCoreTest.vshost.exe.manifest
│   │   │   │   ├── ClientDriver.dll
│   │   │   │   ├── DataHelper.dll
│   │   │   │   └── DataService.dll
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   ├── Debug
│   │   │   │   │   ├── App.g.i.cs
│   │   │   │   │   ├── BatchCoreService.Properties.Resources.resources
│   │   │   │   │   ├── BatchCoreTest.csproj.FileListAbsolute.txt
│   │   │   │   │   ├── BatchCoreTest.exe
│   │   │   │   │   ├── MainWindow.g.i.cs
│   │   │   │   │   └── TempPE
│   │   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   │   └── Release
│   │   │   │   ├── App.g.i.cs
│   │   │   │   ├── BatchCoreService.Properties.Resources.resources
│   │   │   │   ├── BatchCoreTest.csproj.FileListAbsolute.txt
│   │   │   │   ├── BatchCoreTest.exe
│   │   │   │   ├── build.force
│   │   │   │   ├── MainWindow.g.i.cs
│   │   │   │   └── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── ClientDriver
│   │   │   ├── bin
│   │   │   │   ├── Debug
│   │   │   │   │   ├── ClientDriver.dll
│   │   │   │   │   └── DataService.dll
│   │   │   │   └── Release
│   │   │   │   ├── ClientDriver.dll
│   │   │   │   └── DataService.dll
│   │   │   ├── ClientDriver.cs
│   │   │   ├── ClientDriver.csproj
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── ClientDriver.csproj.FileListAbsolute.txt
│   │   │   │   │   └── ClientDriver.dll
│   │   │   │   └── Release
│   │   │   │   ├── ClientDriver.csproj.FileListAbsolute.txt
│   │   │   │   └── ClientDriver.dll
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── CoreTest
│   │   │   ├── AlarmSet.xaml
│   │   │   ├── AlarmSet.xaml.cs
│   │   │   ├── App.xaml
│   │   │   ├── App.xaml.cs
│   │   │   ├── bin
│   │   │   │   ├── Debug
│   │   │   │   │   ├── ClientDriver.dll
│   │   │   │   │   ├── CoreTest.exe
│   │   │   │   │   ├── CoreTest.vshost.exe
│   │   │   │   │   ├── CoreTest.vshost.exe.manifest
│   │   │   │   │   ├── DataHelper.dll
│   │   │   │   │   ├── DataService.dll
│   │   │   │   │   ├── de
│   │   │   │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   │   │   ├── DynamicDataDisplay.dll
│   │   │   │   │   ├── en
│   │   │   │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   │   │   ├── es
│   │   │   │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   │   │   ├── fr
│   │   │   │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   │   │   ├── HMIControl.dll
│   │   │   │   │   ├── it
│   │   │   │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   │   │   ├── ja
│   │   │   │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   │   │   ├── ko
│   │   │   │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   │   │   ├── Microsoft.Expression.Controls.dll
│   │   │   │   │   ├── Microsoft.Expression.Controls.xml
│   │   │   │   │   ├── Microsoft.Expression.Drawing.dll
│   │   │   │   │   ├── Microsoft.Expression.Drawing.xml
│   │   │   │   │   ├── Microsoft.Expression.Interactions.dll
│   │   │   │   │   ├── Microsoft.Expression.Interactions.xml
│   │   │   │   │   ├── System.Windows.Interactivity.dll
│   │   │   │   │   ├── System.Windows.Interactivity.xml
│   │   │   │   │   ├── WPFToolkit.Extended.dll
│   │   │   │   │   ├── zh-Hans
│   │   │   │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   │   │   └── zh-Hant
│   │   │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   │   └── Release
│   │   │   │   ├── ClientDriver.dll
│   │   │   │   ├── CoreTest.exe
│   │   │   │   ├── DataHelper.dll
│   │   │   │   ├── DataService.dll
│   │   │   │   ├── de
│   │   │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   │   ├── DynamicDataDisplay.dll
│   │   │   │   ├── en
│   │   │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   │   ├── es
│   │   │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   │   ├── fr
│   │   │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   │   ├── HMIControl.dll
│   │   │   │   ├── it
│   │   │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   │   ├── ja
│   │   │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   │   ├── ko
│   │   │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   │   ├── Microsoft.Expression.Controls.dll
│   │   │   │   ├── Microsoft.Expression.Controls.xml
│   │   │   │   ├── Microsoft.Expression.Drawing.dll
│   │   │   │   ├── Microsoft.Expression.Drawing.xml
│   │   │   │   ├── Microsoft.Expression.Interactions.dll
│   │   │   │   ├── Microsoft.Expression.Interactions.xml
│   │   │   │   ├── System.Windows.Interactivity.dll
│   │   │   │   ├── System.Windows.Interactivity.xml
│   │   │   │   ├── WPFToolkit.Extended.dll
│   │   │   │   ├── zh-Hans
│   │   │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   │   └── zh-Hant
│   │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── ClientService.cs
│   │   │   ├── ConfigCache.cs
│   │   │   ├── Example.csproj
│   │   │   ├── Guage.xaml
│   │   │   ├── Guage.xaml.cs
│   │   │   ├── Login.xaml
│   │   │   ├── Login.xaml.cs
│   │   │   ├── MainWindow.xaml
│   │   │   ├── MainWindow.xaml.cs
│   │   │   ├── MaterialRecivingLine.xaml
│   │   │   ├── MaterialRecivingLine.xaml.cs
│   │   │   ├── MemberPrincipal.cs
│   │   │   ├── MyCollection.cs
│   │   │   ├── MyCommand.cs
│   │   │   ├── MyConvert.cs
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   ├── Debug
│   │   │   │   │   ├── AlarmSet.baml
│   │   │   │   │   ├── AlarmSet.g.cs
│   │   │   │   │   ├── AlarmSet.g.i.cs
│   │   │   │   │   ├── App.baml
│   │   │   │   │   ├── App.g.cs
│   │   │   │   │   ├── App.g.i.cs
│   │   │   │   │   ├── Batching1.baml
│   │   │   │   │   ├── Batching1.g.cs
│   │   │   │   │   ├── Batching1.g.i.cs
│   │   │   │   │   ├── Batching_SBT.baml
│   │   │   │   │   ├── Batching_SBT.g.cs
│   │   │   │   │   ├── Batching_SBT.g.i.cs
│   │   │   │   │   ├── BreakCheck.g.i.cs
│   │   │   │   │   ├── BulkProductLine.baml
│   │   │   │   │   ├── BulkProductLine.g.cs
│   │   │   │   │   ├── BulkProductLine.g.i.cs
│   │   │   │   │   ├── CoreTest.csproj.FileListAbsolute.txt
│   │   │   │   │   ├── CoreTest.exe
│   │   │   │   │   ├── CoreTest.g.resources
│   │   │   │   │   ├── CoreTest_MarkupCompile.i.lref
│   │   │   │   │   ├── CoreTest_MarkupCompile.lref
│   │   │   │   │   ├── CoreTest.Properties.Resources.resources
│   │   │   │   │   ├── DeviceParam.g.i.cs
│   │   │   │   │   ├── Example.csproj.FileListAbsolute.txt
│   │   │   │   │   ├── Extruder1.baml
│   │   │   │   │   ├── Extruder1.g.cs
│   │   │   │   │   ├── Extruder1.g.i.cs
│   │   │   │   │   ├── GeneratedInternalTypeHelper.g.cs
│   │   │   │   │   ├── GeneratedInternalTypeHelper.g.i.cs
│   │   │   │   │   ├── Guage.baml
│   │   │   │   │   ├── Guage.g.cs
│   │   │   │   │   ├── Guage.g.i.cs
│   │   │   │   │   ├── HandAdding.baml
│   │   │   │   │   ├── HandAdding.g.cs
│   │   │   │   │   ├── HandAdding.g.i.cs
│   │   │   │   │   ├── IOrderAddEdit.baml
│   │   │   │   │   ├── IOrderAddEdit.g.cs
│   │   │   │   │   ├── IOrderAddEdit.g.i.cs
│   │   │   │   │   ├── Login.baml
│   │   │   │   │   ├── Login.g.cs
│   │   │   │   │   ├── Login.g.i.cs
│   │   │   │   │   ├── MainWindow.baml
│   │   │   │   │   ├── MainWindow.g.cs
│   │   │   │   │   ├── MainWindow.g.i.cs
│   │   │   │   │   ├── MaterialRecivingLine.baml
│   │   │   │   │   ├── MaterialRecivingLine.g.cs
│   │   │   │   │   ├── MaterialRecivingLine.g.i.cs
│   │   │   │   │   ├── Pelleting1.baml
│   │   │   │   │   ├── Pelleting1.g.cs
│   │   │   │   │   ├── Pelleting1.g.i.cs
│   │   │   │   │   ├── Pelleting3.baml
│   │   │   │   │   ├── Pelleting3.g.cs
│   │   │   │   │   ├── Pelleting3.g.i.cs
│   │   │   │   │   ├── RdlCompile.compiled
│   │   │   │   │   ├── RecipeEditor.baml
│   │   │   │   │   ├── RecipeEditor.g.cs
│   │   │   │   │   ├── RecipeEditor.g.i.cs
│   │   │   │   │   ├── ReporterSet.baml
│   │   │   │   │   ├── ReporterSet.g.cs
│   │   │   │   │   ├── ReporterSet.g.i.cs
│   │   │   │   │   ├── RouteSel.g.i.cs
│   │   │   │   │   ├── RuntimeChart.baml
│   │   │   │   │   ├── RuntimeChart.g.cs
│   │   │   │   │   ├── RuntimeChart.g.i.cs
│   │   │   │   │   ├── SiloProductLine.baml
│   │   │   │   │   ├── SiloProductLine.g.cs
│   │   │   │   │   ├── SiloProductLine.g.i.cs
│   │   │   │   │   ├── StartAnalog.g.i.cs
│   │   │   │   │   ├── StartDevice.baml
│   │   │   │   │   ├── StartDevice.g.cs
│   │   │   │   │   ├── StartDevice.g.i.cs
│   │   │   │   │   ├── TagMonitor.baml
│   │   │   │   │   ├── TagMonitor.g.cs
│   │   │   │   │   ├── TagMonitor.g.i.cs
│   │   │   │   │   ├── TempPE
│   │   │   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   │   │   ├── Trend.baml
│   │   │   │   │   ├── Trend.g.cs
│   │   │   │   │   └── Trend.g.i.cs
│   │   │   │   └── Release
│   │   │   │   ├── AlarmSet.baml
│   │   │   │   ├── AlarmSet.g.cs
│   │   │   │   ├── AlarmSet.g.i.cs
│   │   │   │   ├── App.baml
│   │   │   │   ├── App.g.cs
│   │   │   │   ├── App.g.i.cs
│   │   │   │   ├── Batching1.baml
│   │   │   │   ├── Batching1.g.cs
│   │   │   │   ├── Batching1.g.i.cs
│   │   │   │   ├── Batching_SBT.baml
│   │   │   │   ├── Batching_SBT.g.cs
│   │   │   │   ├── Batching_SBT.g.i.cs
│   │   │   │   ├── BreakCheck.baml
│   │   │   │   ├── BreakCheck.g.cs
│   │   │   │   ├── BreakCheck.g.i.cs
│   │   │   │   ├── BulkProductLine.baml
│   │   │   │   ├── BulkProductLine.g.cs
│   │   │   │   ├── BulkProductLine.g.i.cs
│   │   │   │   ├── CoreTest_Content.g.i.cs
│   │   │   │   ├── CoreTest.csproj.FileListAbsolute.txt
│   │   │   │   ├── CoreTest.exe
│   │   │   │   ├── CoreTest.g.resources
│   │   │   │   ├── CoreTest_MarkupCompile.i.lref
│   │   │   │   ├── CoreTest_MarkupCompile.lref
│   │   │   │   ├── CoreTest.Properties.Resources.resources
│   │   │   │   ├── DeviceParam.baml
│   │   │   │   ├── DeviceParam.g.cs
│   │   │   │   ├── DeviceParam.g.i.cs
│   │   │   │   ├── Example.csproj.FileListAbsolute.txt
│   │   │   │   ├── Extruder1.baml
│   │   │   │   ├── Extruder1.g.cs
│   │   │   │   ├── Extruder1.g.i.cs
│   │   │   │   ├── GeneratedInternalTypeHelper.g.cs
│   │   │   │   ├── GeneratedInternalTypeHelper.g.i.cs
│   │   │   │   ├── Guage.baml
│   │   │   │   ├── Guage.g.cs
│   │   │   │   ├── Guage.g.i.cs
│   │   │   │   ├── HandAdding.baml
│   │   │   │   ├── HandAdding.g.cs
│   │   │   │   ├── HandAdding.g.i.cs
│   │   │   │   ├── IOrderAddEdit.baml
│   │   │   │   ├── IOrderAddEdit.g.cs
│   │   │   │   ├── IOrderAddEdit.g.i.cs
│   │   │   │   ├── Login.baml
│   │   │   │   ├── Login.g.cs
│   │   │   │   ├── Login.g.i.cs
│   │   │   │   ├── MainWindow.baml
│   │   │   │   ├── MainWindow.g.cs
│   │   │   │   ├── MainWindow.g.i.cs
│   │   │   │   ├── MaterialRecivingLine.baml
│   │   │   │   ├── MaterialRecivingLine.g.cs
│   │   │   │   ├── MaterialRecivingLine.g.i.cs
│   │   │   │   ├── Pelleting1.baml
│   │   │   │   ├── Pelleting1.g.cs
│   │   │   │   ├── Pelleting1.g.i.cs
│   │   │   │   ├── Pelleting3.baml
│   │   │   │   ├── Pelleting3.g.cs
│   │   │   │   ├── Pelleting3.g.i.cs
│   │   │   │   ├── RdlCompile.compiled
│   │   │   │   ├── RecipeEditor.baml
│   │   │   │   ├── RecipeEditor.g.cs
│   │   │   │   ├── RecipeEditor.g.i.cs
│   │   │   │   ├── ReporterSet.baml
│   │   │   │   ├── ReporterSet.g.cs
│   │   │   │   ├── ReporterSet.g.i.cs
│   │   │   │   ├── RouteSel.baml
│   │   │   │   ├── RouteSel.g.cs
│   │   │   │   ├── RouteSel.g.i.cs
│   │   │   │   ├── RuntimeChart.baml
│   │   │   │   ├── RuntimeChart.g.cs
│   │   │   │   ├── RuntimeChart.g.i.cs
│   │   │   │   ├── SiloProductLine.baml
│   │   │   │   ├── SiloProductLine.g.cs
│   │   │   │   ├── SiloProductLine.g.i.cs
│   │   │   │   ├── StartAnalog.baml
│   │   │   │   ├── StartAnalog.g.cs
│   │   │   │   ├── StartAnalog.g.i.cs
│   │   │   │   ├── StartDevice.baml
│   │   │   │   ├── StartDevice.g.cs
│   │   │   │   ├── StartDevice.g.i.cs
│   │   │   │   ├── TagMonitor.baml
│   │   │   │   ├── TagMonitor.g.cs
│   │   │   │   ├── TagMonitor.g.i.cs
│   │   │   │   ├── TempPE
│   │   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   │   ├── Trend.baml
│   │   │   │   ├── Trend.g.cs
│   │   │   │   ├── Trend.g.i.cs
│   │   │   │   └── UserControl1.g.i.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── DataSources
│   │   │   │   │   └── ReporterScale.datasource
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Resources
│   │   │   │   ├── 19.ICO
│   │   │   │   ├── 275.ICO
│   │   │   │   ├── 281.ICO
│   │   │   │   ├── 3.ICO
│   │   │   │   ├── 555.ICO
│   │   │   │   ├── 6523.ICO
│   │   │   │   ├── Copy.ico
│   │   │   │   ├── Cross.ico
│   │   │   │   ├── Cut.ico
│   │   │   │   ├── Database-Add.ico
│   │   │   │   ├── Design.ico
│   │   │   │   ├── Help.ico
│   │   │   │   ├── Key.ico
│   │   │   │   ├── Login1.png
│   │   │   │   ├── mm-Eject.ico
│   │   │   │   ├── mm-Fast Forward.ico
│   │   │   │   ├── mm-First.ico
│   │   │   │   ├── mm-Last.ico
│   │   │   │   ├── mm-Pause.ico
│   │   │   │   ├── mm-Play.ico
│   │   │   │   ├── mm-Rewind.ico
│   │   │   │   ├── mm-Stop.ico
│   │   │   │   ├── Permission.ico
│   │   │   │   ├── Plus.ico
│   │   │   │   ├── Redo.ico
│   │   │   │   ├── Save.ico
│   │   │   │   ├── Script.ico
│   │   │   │   ├── Search.ico
│   │   │   │   ├── Select All.ico
│   │   │   │   ├── Tools.ico
│   │   │   │   ├── Tree View.ico
│   │   │   │   ├── Unlock.ico
│   │   │   │   └── Warning.ico
│   │   │   ├── RuntimeChart.xaml
│   │   │   ├── RuntimeChart.xaml.cs
│   │   │   ├── SiloProductLine.xaml
│   │   │   ├── SiloProductLine.xaml.cs
│   │   │   ├── StartDevice.xaml
│   │   │   ├── StartDevice.xaml.cs
│   │   │   ├── SystemLog.cs
│   │   │   ├── TagMonitor.xaml
│   │   │   ├── TagMonitor.xaml.cs
│   │   │   ├── Trend.xaml
│   │   │   ├── Trend.xaml.cs
│   │   │   ├── Volume.ico
│   │   │   └── WindowHelper.cs
│   │   ├── DataExchange.sln
│   │   ├── DataHelper
│   │   │   ├── bin
│   │   │   │   └── x86
│   │   │   │   ├── Debug
│   │   │   │   │   ├── DataHelper.dll
│   │   │   │   │   └── DataService.dll
│   │   │   │   └── Release
│   │   │   │   ├── DataHelper.dll
│   │   │   │   └── DataService.dll
│   │   │   ├── DAHelper.pfx
│   │   │   ├── DataHelper.cs
│   │   │   ├── DataHelper.csproj
│   │   │   ├── HDAIOHelper.cs
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── DataHelper.csproj.FileListAbsolute.txt
│   │   │   │   │   └── DataHelper.dll
│   │   │   │   ├── Itanium
│   │   │   │   │   └── Release
│   │   │   │   │   └── build.force
│   │   │   │   ├── Release
│   │   │   │   │   ├── DataHelper.csproj.FileListAbsolute.txt
│   │   │   │   │   └── DataHelper.dll
│   │   │   │   ├── x64
│   │   │   │   │   └── Release
│   │   │   │   │   └── build.force
│   │   │   │   └── x86
│   │   │   │   ├── Debug
│   │   │   │   │   ├── DataHelper.csproj.FileListAbsolute.txt
│   │   │   │   │   └── DataHelper.dll
│   │   │   │   └── Release
│   │   │   │   ├── DataHelper.csproj.FileListAbsolute.txt
│   │   │   │   └── DataHelper.dll
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── DataService
│   │   │   ├── Alarm.cs
│   │   │   ├── bin
│   │   │   │   ├── Debug
│   │   │   │   │   ├── DataService.dll
│   │   │   │   │   ├── libnodave.net.dll
│   │   │   │   │   ├── S7PROSIMLib.dll
│   │   │   │   │   ├── WpfApplication1.exe
│   │   │   │   │   ├── WpfApplication1.exe.config
│   │   │   │   │   ├── WpfApplication1.vshost.exe
│   │   │   │   │   ├── WpfApplication1.vshost.exe.config
│   │   │   │   │   └── WpfApplication1.vshost.exe.manifest
│   │   │   │   ├── Itanium
│   │   │   │   │   ├── Debug
│   │   │   │   │   │   └── DataService.dll
│   │   │   │   │   └── Release
│   │   │   │   │   └── DataService.dll
│   │   │   │   └── Release
│   │   │   │   └── DataService.dll
│   │   │   ├── CacheReader.cs
│   │   │   ├── ClientReader.cs
│   │   │   ├── codeback.txt
│   │   │   ├── Condition.cs
│   │   │   ├── DAService.pfx
│   │   │   ├── DataService.csproj
│   │   │   ├── DeviceAddress.cs
│   │   │   ├── Eval.cs
│   │   │   ├── ExtensionMethods.cs
│   │   │   ├── FCTCOMMAND.cs
│   │   │   ├── HistoryData.cs
│   │   │   ├── IGroup.cs
│   │   │   ├── IModbusReader.cs
│   │   │   ├── IReader.cs
│   │   │   ├── IServer.cs
│   │   │   ├── ITag.cs
│   │   │   ├── MediaTimer.cs
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── DataService.csproj.FileListAbsolute.txt
│   │   │   │   │   └── DataService.dll
│   │   │   │   ├── Itanium
│   │   │   │   │   ├── Debug
│   │   │   │   │   │   ├── DataService.csproj.FileListAbsolute.txt
│   │   │   │   │   │   └── DataService.dll
│   │   │   │   │   └── Release
│   │   │   │   │   ├── DataService.csproj.FileListAbsolute.txt
│   │   │   │   │   └── DataService.dll
│   │   │   │   ├── Release
│   │   │   │   │   ├── DataService.csproj.FileListAbsolute.txt
│   │   │   │   │   └── DataService.dll
│   │   │   │   └── x86
│   │   │   │   ├── Debug
│   │   │   │   │   ├── App.g.cs
│   │   │   │   │   ├── App.g.i.cs
│   │   │   │   │   ├── DataService.csproj.FileListAbsolute.txt
│   │   │   │   │   ├── DataService.dll
│   │   │   │   │   ├── MainWindow.baml
│   │   │   │   │   ├── MainWindow.g.cs
│   │   │   │   │   ├── MainWindow.g.i.cs
│   │   │   │   │   ├── TempPE
│   │   │   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   │   │   ├── WpfApplication1.csproj.FileListAbsolute.txt
│   │   │   │   │   ├── WpfApplication1.exe
│   │   │   │   │   ├── WpfApplication1.g.resources
│   │   │   │   │   └── WpfApplication1.Properties.Resources.resources
│   │   │   │   └── Release
│   │   │   │   ├── App.g.cs
│   │   │   │   ├── App.g.i.cs
│   │   │   │   ├── DataService.csproj.FileListAbsolute.txt
│   │   │   │   ├── DataService.dll
│   │   │   │   ├── MainWindow.baml
│   │   │   │   ├── MainWindow.g.cs
│   │   │   │   ├── MainWindow.g.i.cs
│   │   │   │   ├── TempPE
│   │   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   │   ├── WpfApplication1.csproj.FileListAbsolute.txt
│   │   │   │   ├── WpfApplication1.g.resources
│   │   │   │   └── WpfApplication1.Properties.Resources.resources
│   │   │   ├── PLCGroup.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── Route.cs
│   │   │   ├── Storage.cs
│   │   │   ├── TagListGroup.cs
│   │   │   ├── TagMetaData.cs
│   │   │   └── WpfApplication1.sln
│   │   ├── FileDriver
│   │   │   ├── bin
│   │   │   │   ├── Debug
│   │   │   │   │   ├── DataService.dll
│   │   │   │   │   └── FileDriver.dll
│   │   │   │   ├── Itanium
│   │   │   │   │   ├── Debug
│   │   │   │   │   │   ├── DataService.dll
│   │   │   │   │   │   └── FileDriver.dll
│   │   │   │   │   └── Release
│   │   │   │   │   ├── DataService.dll
│   │   │   │   │   └── FileDriver.dll
│   │   │   │   └── Release
│   │   │   │   ├── DataService.dll
│   │   │   │   └── FileDriver.dll
│   │   │   ├── DatabaseDriver.cs
│   │   │   ├── FileDeviceGroup.cs
│   │   │   ├── FileDriver.csproj
│   │   │   ├── FileDriver.sln
│   │   │   ├── MemoryDriver.cs
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── FileDriver.csproj.FileListAbsolute.txt
│   │   │   │   │   └── FileDriver.dll
│   │   │   │   ├── Itanium
│   │   │   │   │   ├── Debug
│   │   │   │   │   │   ├── FileDriver.csproj.FileListAbsolute.txt
│   │   │   │   │   │   └── FileDriver.dll
│   │   │   │   │   └── Release
│   │   │   │   │   ├── FileDriver.csproj.FileListAbsolute.txt
│   │   │   │   │   └── FileDriver.dll
│   │   │   │   ├── Release
│   │   │   │   │   ├── build.force
│   │   │   │   │   ├── FileDriver.csproj.FileListAbsolute.txt
│   │   │   │   │   └── FileDriver.dll
│   │   │   │   └── x64
│   │   │   │   └── Release
│   │   │   │   └── build.force
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   └── TagDriver.cs
│   │   ├── HMIControl
│   │   │   ├── AirHammer.cs
│   │   │   ├── AlarmControl.cs
│   │   │   ├── BeltConveyor.cs
│   │   │   ├── bin
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Femiani.Forms.UI.dll
│   │   │   │   │   ├── HMIControl.dll
│   │   │   │   │   ├── HMIControl.Expression.Design.dll
│   │   │   │   │   ├── HMIControl.VisualStudio.Design.dll
│   │   │   │   │   ├── HMIControl.VisualStudio.Design.dll.config
│   │   │   │   │   ├── Microsoft.Expression.Controls.dll
│   │   │   │   │   ├── Microsoft.Expression.Controls.xml
│   │   │   │   │   ├── Microsoft.Expression.Drawing.dll
│   │   │   │   │   ├── Microsoft.Expression.Drawing.xml
│   │   │   │   │   ├── Microsoft.Windows.Design.Extensibility.dll
│   │   │   │   │   ├── Microsoft.Windows.Design.Extensibility.xml
│   │   │   │   │   ├── Microsoft.Windows.Design.Interaction.dll
│   │   │   │   │   ├── Microsoft.Windows.Design.Interaction.xml
│   │   │   │   │   └── zh-Hans
│   │   │   │   │   ├── Microsoft.Windows.Design.Extensibility.resources.dll
│   │   │   │   │   └── Microsoft.Windows.Design.Interaction.resources.dll
│   │   │   │   └── Release
│   │   │   │   ├── Femiani.Forms.UI.dll
│   │   │   │   ├── HMIControl.dll
│   │   │   │   ├── HMIControl.Expression.Design.dll
│   │   │   │   ├── HMIControl.VisualStudio.Design.dll
│   │   │   │   ├── HMIControl.VisualStudio.Design.dll.config
│   │   │   │   ├── Microsoft.Expression.Controls.dll
│   │   │   │   ├── Microsoft.Expression.Controls.xml
│   │   │   │   ├── Microsoft.Expression.Drawing.dll
│   │   │   │   ├── Microsoft.Expression.Drawing.xml
│   │   │   │   ├── Microsoft.Windows.Design.Extensibility.dll
│   │   │   │   ├── Microsoft.Windows.Design.Extensibility.xml
│   │   │   │   ├── Microsoft.Windows.Design.Interaction.dll
│   │   │   │   ├── Microsoft.Windows.Design.Interaction.xml
│   │   │   │   └── zh-Hans
│   │   │   │   ├── Microsoft.Windows.Design.Extensibility.resources.dll
│   │   │   │   └── Microsoft.Windows.Design.Interaction.resources.dll
│   │   │   ├── binDebug
│   │   │   │   ├── Femiani.Forms.UI.dll
│   │   │   │   ├── HMIControl.dll
│   │   │   │   ├── HMIControl.Expression.Design.dll
│   │   │   │   ├── Microsoft.Windows.Design.Extensibility.dll
│   │   │   │   ├── Microsoft.Windows.Design.Interaction.dll
│   │   │   │   └── zh-Hans
│   │   │   │   ├── Microsoft.Windows.Design.Extensibility.resources.dll
│   │   │   │   └── Microsoft.Windows.Design.Interaction.resources.dll
│   │   │   ├── Bucket.cs
│   │   │   ├── BufferBin.cs
│   │   │   ├── Buffer.cs
│   │   │   ├── ChainConveyor.cs
│   │   │   ├── Commands.cs
│   │   │   ├── ControlValve.cs
│   │   │   ├── CutoffGate.cs
│   │   │   ├── Cyclone.cs
│   │   │   ├── Cylinder.cs
│   │   │   ├── CylinderStick.cs
│   │   │   ├── Deduster.cs
│   │   │   ├── DischargePot.cs
│   │   │   ├── DistributorAver.cs
│   │   │   ├── Distributor.cs
│   │   │   ├── Divert.cs
│   │   │   ├── DraughtFan.cs
│   │   │   ├── Dryer.cs
│   │   │   ├── DryerPart.cs
│   │   │   ├── Elevator.cs
│   │   │   ├── Fan.cs
│   │   │   ├── FeedBin.cs
│   │   │   ├── Flange.cs
│   │   │   ├── FourWays.cs
│   │   │   ├── FromTo.cs
│   │   │   ├── GarbageBag.cs
│   │   │   ├── Gate.cs
│   │   │   ├── Grind.cs
│   │   │   ├── HMIBase
│   │   │   │   ├── BaseStruct.cs
│   │   │   │   ├── ButtonBase.cs
│   │   │   │   ├── ControlAdorner.cs
│   │   │   │   ├── ControlBase.cs
│   │   │   │   ├── HMIControlBase.cs
│   │   │   │   ├── HMIConvert.cs
│   │   │   │   ├── HMIHelper.cs
│   │   │   │   ├── LinkableControl.cs
│   │   │   │   ├── LinkLine.cs
│   │   │   │   ├── LinkPin.cs
│   │   │   │   ├── Pather.cs
│   │   │   │   ├── PinAdorner.cs
│   │   │   │   └── StartableAttribute.cs
│   │   │   ├── HMIControl.csproj
│   │   │   ├── HMIEx
│   │   │   │   ├── FrameAdorner.cs
│   │   │   │   ├── Frame.cs
│   │   │   │   ├── HMIButton.cs
│   │   │   │   ├── HMILable.cs
│   │   │   │   ├── HMITextBox.cs
│   │   │   │   ├── TextAdorner.cs
│   │   │   │   ├── ZoomBoxPanel.cs
│   │   │   │   └── ZoomSlideControl.cs
│   │   │   ├── LiquidAdd.cs
│   │   │   ├── LiquidBuf1.cs
│   │   │   ├── LiquidBuf.cs
│   │   │   ├── MagnetCleaner.cs
│   │   │   ├── Magnetism.cs
│   │   │   ├── MagnetValve.cs
│   │   │   ├── ManualAddControl.cs
│   │   │   ├── ManualAdd.cs
│   │   │   ├── Motor.cs
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── GeneratedInternalTypeHelper.g.cs
│   │   │   │   │   ├── GeneratedInternalTypeHelper.g.i.cs
│   │   │   │   │   ├── GenerateResource.read.0.tlog
│   │   │   │   │   ├── GenerateResource.read.1.tlog
│   │   │   │   │   ├── GenerateResource.write.0.tlog
│   │   │   │   │   ├── GenerateResource.write.1.tlog
│   │   │   │   │   ├── HMIControl.csproj.FileListAbsolute.txt
│   │   │   │   │   ├── HMIControl.dll
│   │   │   │   │   ├── HMIControl.g.resources
│   │   │   │   │   ├── HMIControl_MarkupCompile.i.lref
│   │   │   │   │   ├── HMIControl_MarkupCompile.lref
│   │   │   │   │   ├── HMIControl.Properties.Resources.resources
│   │   │   │   │   ├── TempPE
│   │   │   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   │   │   └── Themes
│   │   │   │   │   ├── Colors.baml
│   │   │   │   │   ├── ControlStyles.baml
│   │   │   │   │   └── Generic.baml
│   │   │   │   └── Release
│   │   │   │   ├── GeneratedInternalTypeHelper.g.cs
│   │   │   │   ├── GeneratedInternalTypeHelper.g.i.cs
│   │   │   │   ├── HMIControl.csproj.FileListAbsolute.txt
│   │   │   │   ├── HMIControl.dll
│   │   │   │   ├── HMIControl.g.resources
│   │   │   │   ├── HMIControl_MarkupCompile.lref
│   │   │   │   ├── HMIControl.Properties.Resources.resources
│   │   │   │   ├── TempPE
│   │   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   │   └── Themes
│   │   │   │   └── Generic.baml
│   │   │   ├── PackingBench.cs
│   │   │   ├── PreCleaner.cs
│   │   │   ├── ProductLineView.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── ProportionValve.cs
│   │   │   ├── PushButton.cs
│   │   │   ├── Scale.cs
│   │   │   ├── SelectSwitch.cs
│   │   │   ├── Sifter.cs
│   │   │   ├── Silo.cs
│   │   │   ├── SlideGate.cs
│   │   │   ├── SparyTube.cs
│   │   │   ├── Tacho
│   │   │   │   ├── Dial.cs
│   │   │   │   ├── DualRoundScale.cs
│   │   │   │   ├── GuageBase.cs
│   │   │   │   ├── HVDial.cs
│   │   │   │   ├── HVIndicator.cs
│   │   │   │   ├── HVLevelIndicator.cs
│   │   │   │   ├── HVScale.cs
│   │   │   │   ├── HVValueIndicator.cs
│   │   │   │   ├── RoundDial.cs
│   │   │   │   ├── RoundGuageBase.cs
│   │   │   │   ├── RoundIndicator.cs
│   │   │   │   ├── RoundIndicatorSlider.cs
│   │   │   │   ├── RoundScale.cs
│   │   │   │   ├── RoundSlider.cs
│   │   │   │   └── Tacho.cs
│   │   │   ├── Themes
│   │   │   │   ├── Colors.xaml
│   │   │   │   ├── ControlStyles.xaml
│   │   │   │   ├── Generic.7z
│   │   │   │   └── Generic.xaml
│   │   │   ├── Truck.cs
│   │   │   ├── TubeArc.cs
│   │   │   ├── TubeLine.cs
│   │   │   └── TubeT.cs
│   │   ├── LinkableControlDesignTime
│   │   │   ├── bin
│   │   │   │   └── Release
│   │   │   │   ├── HMIControl.dll
│   │   │   │   ├── HMIControl.VisualStudio.Design.dll
│   │   │   │   ├── Microsoft.Windows.Design.Extensibility.dll
│   │   │   │   ├── Microsoft.Windows.Design.Extensibility.xml
│   │   │   │   ├── Microsoft.Windows.Design.Interaction.dll
│   │   │   │   └── Microsoft.Windows.Design.Interaction.xml
│   │   │   ├── ControlAdornerProvider.cs
│   │   │   ├── LinkableControlDesign.csproj
│   │   │   ├── metadata.cs
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── GenerateResource.read.0.tlog
│   │   │   │   │   ├── GenerateResource.read.1.tlog
│   │   │   │   │   ├── GenerateResource.write.0.tlog
│   │   │   │   │   ├── GenerateResource.write.1.tlog
│   │   │   │   │   ├── HMIControl.VisualStudio.Design.dll
│   │   │   │   │   ├── HMIControl.VisualStudio.Design.Properties.Resources.resources
│   │   │   │   │   ├── HMIControl.VisualStudio.Design.TagComplexEditor.resources
│   │   │   │   │   ├── HMIControl.VisualStudio.Design.TagList.resources
│   │   │   │   │   ├── HMIControl.VisualStudio.Design.TagWindowEditor.resources
│   │   │   │   │   ├── HMIControl.VisualStudio.Design.TagWriteEditor.resources
│   │   │   │   │   ├── LinkableControlDesign.csproj.FileListAbsolute.txt
│   │   │   │   │   ├── LinkableControlDesignTime.csproj.FileListAbsolute.txt
│   │   │   │   │   └── TempPE
│   │   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   │   └── Release
│   │   │   │   ├── build.force
│   │   │   │   ├── HMIControl.VisualStudio.Design.dll
│   │   │   │   ├── HMIControl.VisualStudio.Design.Properties.Resources.resources
│   │   │   │   ├── HMIControl.VisualStudio.Design.TagComplexEditor.resources
│   │   │   │   ├── HMIControl.VisualStudio.Design.TagList.resources
│   │   │   │   ├── HMIControl.VisualStudio.Design.TagWindowEditor.resources
│   │   │   │   ├── HMIControl.VisualStudio.Design.TagWriteEditor.resources
│   │   │   │   ├── LinkableControlDesign.csproj.FileListAbsolute.txt
│   │   │   │   └── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   └── Resources.resx
│   │   │   ├── Resources
│   │   │   │   └── Save.ico
│   │   │   ├── TagComplexEditor.cs
│   │   │   ├── TagComplexEditor.Designer.cs
│   │   │   ├── TagComplexEditor.resx
│   │   │   ├── TagList.cs
│   │   │   ├── TagList.Designer.cs
│   │   │   ├── TagList.resx
│   │   │   ├── TagWindowEditor.cs
│   │   │   ├── TagWindowEditor.Designer.cs
│   │   │   ├── TagWindowEditor.resx
│   │   │   ├── TagWriteEditor.cs
│   │   │   ├── TagWriteEditor.Designer.cs
│   │   │   └── TagWriteEditor.resx
│   │   ├── ModbusDriver
│   │   │   ├── bin
│   │   │   │   ├── Debug
│   │   │   │   │   ├── DataService.dll
│   │   │   │   │   └── ModbusDriver.dll
│   │   │   │   ├── Itanium
│   │   │   │   │   ├── Debug
│   │   │   │   │   │   ├── DataService.dll
│   │   │   │   │   │   └── ModbusDriver.dll
│   │   │   │   │   └── Release
│   │   │   │   │   ├── DataService.dll
│   │   │   │   │   └── ModbusDriver.dll
│   │   │   │   └── Release
│   │   │   │   ├── DataService.dll
│   │   │   │   └── ModbusDriver.dll
│   │   │   ├── ModbusDriver.csproj
│   │   │   ├── ModbusDriver.sln
│   │   │   ├── ModbusRTUDriver.cs
│   │   │   ├── ModbusRTU_TCP.cs
│   │   │   ├── ModbusTCPDriver.cs
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── ModbusDriver.csproj.FileListAbsolute.txt
│   │   │   │   │   └── ModbusDriver.dll
│   │   │   │   ├── Itanium
│   │   │   │   │   ├── Debug
│   │   │   │   │   │   ├── ModbusDriver.csproj.FileListAbsolute.txt
│   │   │   │   │   │   └── ModbusDriver.dll
│   │   │   │   │   └── Release
│   │   │   │   │   ├── ModbusDriver.csproj.FileListAbsolute.txt
│   │   │   │   │   └── ModbusDriver.dll
│   │   │   │   ├── Release
│   │   │   │   │   ├── build.force
│   │   │   │   │   ├── ModbusDriver.csproj.FileListAbsolute.txt
│   │   │   │   │   └── ModbusDriver.dll
│   │   │   │   └── x64
│   │   │   │   └── Release
│   │   │   │   └── build.force
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── OPCDriver
│   │   │   ├── bin
│   │   │   │   ├── Debug
│   │   │   │   │   ├── DataService.dll
│   │   │   │   │   ├── OPCDriver.dll
│   │   │   │   │   └── OPCLib.dll
│   │   │   │   └── Release
│   │   │   │   ├── DataService.dll
│   │   │   │   ├── OPCDriver.dll
│   │   │   │   └── OPCLib.dll
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── OPCDriver.csproj.FileListAbsolute.txt
│   │   │   │   │   └── OPCDriver.dll
│   │   │   │   └── Release
│   │   │   │   ├── build.force
│   │   │   │   ├── OPCDriver.csproj.FileListAbsolute.txt
│   │   │   │   └── OPCDriver.dll
│   │   │   ├── OPCDriver.cs
│   │   │   ├── OPCDriver.csproj
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── OPCLib
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   └── OPCLib.dll
│   │   │   ├── Release
│   │   │   │   ├── OPCLib.dll
│   │   │   │   └── OPCLib_Secure
│   │   │   │   └── OPCLib.dll
│   │   │   └── x86
│   │   │   ├── Debug
│   │   │   │   └── OPCLib.dll
│   │   │   └── Release
│   │   │   └── OPCLib.dll
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── OPCLib.csproj.FileListAbsolute.txt
│   │   │   │   └── OPCLib.dll
│   │   │   ├── Release
│   │   │   │   ├── OPCLib.csproj.FileListAbsolute.txt
│   │   │   │   └── OPCLib.dll
│   │   │   └── x86
│   │   │   ├── Debug
│   │   │   │   ├── OPCLib.csproj.FileListAbsolute.txt
│   │   │   │   └── OPCLib.dll
│   │   │   └── Release
│   │   │   ├── OPCLib.csproj.FileListAbsolute.txt
│   │   │   └── OPCLib.dll
│   │   ├── OPCDA
│   │   │   ├── bin
│   │   │   │   └── Release
│   │   │   │   └── OPCDA.dll
│   │   │   ├── obj
│   │   │   │   └── Release
│   │   │   │   ├── OPCDA.csproj.FileListAbsolute.txt
│   │   │   │   └── OPCDA.dll
│   │   │   ├── OPCDA.csproj
│   │   │   ├── OPC_Data_Class.cs
│   │   │   ├── OPC_Data_Enum.cs
│   │   │   ├── OPC_Data_Interface.cs
│   │   │   ├── OPC_Data_Struct.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── OPC_Data_Class.cs
│   │   ├── OPC_Data_Enum.cs
│   │   ├── OPC_Data_Interface.cs
│   │   ├── OPC_Data_Struct.cs
│   │   ├── OPCLib.csproj
│   │   ├── OPCLib.sln
│   │   ├── OPCLib.snk
│   │   └── Properties
│   │   └── AssemblyInfo.cs
│   └── TagConfig
│   ├── TagConfig
│   │   ├── AlarmForm.cs
│   │   ├── AlarmForm.Designer.cs
│   │   ├── AlarmForm.resx
│   │   ├── AlarmParam.cs
│   │   ├── AlarmParam.Designer.cs
│   │   ├── AlarmParam.resx
│   │   ├── app.config
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── Microsoft.Office.Interop.Excel.dll
│   │   │   │   ├── Microsoft.Office.Interop.Excel.xml
│   │   │   │   ├── Microsoft.Vbe.Interop.dll
│   │   │   │   ├── office.dll
│   │   │   │   ├── office.xml
│   │   │   │   ├── TagConfig.exe
│   │   │   │   ├── TagConfig.exe.config
│   │   │   │   ├── TagConfig.vshost.exe
│   │   │   │   ├── TagConfig.vshost.exe.config
│   │   │   │   └── TagConfig.vshost.exe.manifest
│   │   │   └── Release
│   │   │   ├── DataService.dll
│   │   │   ├── meta1.xml
│   │   │   ├── meta2.xml
│   │   │   ├── meta.xml
│   │   │   ├── TagConfig.exe
│   │   │   ├── TagConfig.exe.config
│   │   │   ├── TagConfig.vshost.exe
│   │   │   ├── TagConfig.vshost.exe.config
│   │   │   └── TagConfig.vshost.exe.manifest
│   │   ├── Condition.cs
│   │   ├── DataHelper.cs
│   │   ├── DriverSet.cs
│   │   ├── DriverSet.Designer.cs
│   │   ├── DriverSet.resx
│   │   ├── ExMethos.cs
│   │   ├── Form1.cs
│   │   ├── Form1.Designer.cs
│   │   ├── Form1.resx
│   │   ├── GroupParam.cs
│   │   ├── GroupParam.Designer.cs
│   │   ├── GroupParam.resx
│   │   ├── obj
│   │   │   └── x86
│   │   │   ├── Debug
│   │   │   │   ├── GenerateResource.read.1.tlog
│   │   │   │   ├── GenerateResource.write.1.tlog
│   │   │   │   ├── ResGen.read.1.tlog
│   │   │   │   ├── ResGen.write.1.tlog
│   │   │   │   ├── TagConfig.AlarmForm.resources
│   │   │   │   ├── TagConfig.AlarmParam.resources
│   │   │   │   ├── TagConfig.csproj.FileListAbsolute.txt
│   │   │   │   ├── TagConfig.DeviceParam.resources
│   │   │   │   ├── TagConfig.DeviceSet.resources
│   │   │   │   ├── TagConfig.DriverSet.resources
│   │   │   │   ├── TagConfig.exe
│   │   │   │   ├── TagConfig.Form1.resources
│   │   │   │   ├── TagConfig.GroupParam.resources
│   │   │   │   ├── TagConfig.Properties.Resources.resources
│   │   │   │   ├── TagConfig.RecipeGroupSet.resources
│   │   │   │   ├── TagConfig.RecipeSet.resources
│   │   │   │   ├── TagConfig.RegisterSet.resources
│   │   │   │   ├── TagConfig.RouteParam.resources
│   │   │   │   ├── TagConfig.RouteSet.resources
│   │   │   │   ├── TagConfig.ScaleParam.resources
│   │   │   │   ├── TagConfig.TagParam.resources
│   │   │   │   └── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   └── Release
│   │   │   ├── GenerateResource.read.1.tlog
│   │   │   ├── GenerateResource.write.1.tlog
│   │   │   ├── TagConfig.AlarmForm.resources
│   │   │   ├── TagConfig.AlarmParam.resources
│   │   │   ├── TagConfig.csproj.FileListAbsolute.txt
│   │   │   ├── TagConfig.DriverSet.resources
│   │   │   ├── TagConfig.exe
│   │   │   ├── TagConfig.Form1.resources
│   │   │   ├── TagConfig.GroupParam.resources
│   │   │   ├── TagConfig.Properties.Resources.resources
│   │   │   ├── TagConfig.RegisterSet.resources
│   │   │   ├── TagConfig.ScaleParam.resources
│   │   │   ├── TagConfig.TagParam.resources
│   │   │   └── TempPE
│   │   │   └── Properties.Resources.Designer.cs.dll
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── RegisterSet.cs
│   │   ├── RegisterSet.Designer.cs
│   │   ├── RegisterSet.resx
│   │   ├── Resources
│   │   │   ├── Attribute.gif
│   │   │   ├── Clear.gif
│   │   │   ├── Collect.gif
│   │   │   ├── Copy.gif
│   │   │   ├── Database.ico
│   │   │   ├── Delete.gif
│   │   │   ├── Excel.gif
│   │   │   ├── Exit.gif
│   │   │   ├── Find.gif
│   │   │   ├── Help.gif
│   │   │   ├── Link.ico
│   │   │   ├── Page-Setup.ico
│   │   │   ├── PPrint.gif
│   │   │   ├── PSave.gif
│   │   │   ├── Timer.gif
│   │   │   ├── Tip.ico
│   │   │   └── Tool.gif
│   │   ├── ScaleParam.cs
│   │   ├── ScaleParam.Designer.cs
│   │   ├── ScaleParam.resx
│   │   ├── TagConfig.csproj
│   │   ├── TagData.cs
│   │   ├── TagParam.cs
│   │   ├── TagParam.Designer.cs
│   │   ├── TagParam.resx
│   │   └── Wizard.ico
│   ├── TagConfig.exe
│   └── TagConfig.sln
└── Showcase
├── guage.png
├── Receiving1.png
└── scada1.png

207 directories, 943 files

标签:

实例下载地址

C# 开源组态

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警