【例子介绍】OPC CLIENT 连接OPC SERVER示例
【相关图片】
【源码结构】
.
├── OPC CLIENT 连接OPC SERVER示例-PLC OPC CLIENT Demo_myPlcOpcClient.zip
└── myPlcOpcClient
├── myPlcOpcClient
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── MainWindow.xaml
│ ├── MainWindow.xaml.cs
│ ├── NotConverter.cs
│ ├── OPC
│ │ ├── OpcNetApi.Com.dll
│ │ ├── OpcNetApi.Xml.dll
│ │ └── OpcNetApi.dll
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── bin
│ │ └── Debug
│ │ ├── OpcNetApi.Com.dll
│ │ ├── OpcNetApi.Xml.dll
│ │ ├── OpcNetApi.dll
│ │ ├── myPlcOpcClient.exe
│ │ └── myPlcOpcClient.pdb
│ ├── myPlcOpcClient.csproj
│ └── obj
│ └── x86
│ └── Debug
│ ├── App.g.cs
│ ├── App.g.i.cs
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── GeneratedInternalTypeHelper.g.cs
│ ├── GeneratedInternalTypeHelper.g.i.cs
│ ├── MainWindow.baml
│ ├── MainWindow.g.cs
│ ├── MainWindow.g.i.cs
│ ├── TempPE
│ ├── myPlcOpcClient.Properties.Resources.resources
│ ├── myPlcOpcClient.csproj.AssemblyReference.cache
│ ├── myPlcOpcClient.csproj.CopyComplete
│ ├── myPlcOpcClient.csproj.CoreCompileInputs.cache
│ ├── myPlcOpcClient.csproj.FileListAbsolute.txt
│ ├── myPlcOpcClient.csproj.GenerateResource.cache
│ ├── myPlcOpcClient.exe
│ ├── myPlcOpcClient.g.resources
│ ├── myPlcOpcClient.pdb
│ ├── myPlcOpcClient_Content.g.cs
│ ├── myPlcOpcClient_Content.g.i.cs
│ ├── myPlcOpcClient_MarkupCompile.cache
│ └── myPlcOpcClient_MarkupCompile.lref
└── myPlcOpcClient.sln
10 directories, 42 files
评论