├── .gitignore ├── README.md ├── docs └── images │ ├── OPC Driver.png │ ├── PowerStation.png │ ├── Window management.png │ ├── binding.png │ ├── binding_menu.png │ ├── communication plugin instances.png │ ├── occ_fan.png │ └── schematic.png └── src ├── Archiver ├── 3rdParty │ ├── DataConverters │ │ ├── Kent.Boogaart.Converters.dll │ │ ├── Kent.Boogaart.HelperTrinity.dll │ │ ├── WPFConvertersAPI.chm │ │ └── license.txt │ ├── DockPanel │ │ ├── WeifenLuo.WinFormsUI.Docking.dll │ │ └── license.txt │ ├── IronPython │ │ ├── IronPython.Modules.dll │ │ ├── IronPython.dll │ │ ├── License.Rtf │ │ ├── Microsoft.Scripting.Core.dll │ │ ├── Microsoft.Scripting.ExtensionAttribute.dll │ │ └── Microsoft.Scripting.dll │ ├── NModbus │ │ ├── FTD2XX.dll │ │ ├── FtdAdapter.dll │ │ ├── Modbus.dll │ │ ├── README.txt │ │ ├── Unme.Common.dll │ │ ├── log4net.dll │ │ └── mod_RSsim.exe │ ├── NPlot │ │ ├── NPlot.dll │ │ └── license.txt │ ├── NUnit │ │ ├── license.txt │ │ ├── nunit-gui-runner.dll │ │ ├── nunit.core.dll │ │ ├── nunit.core.interfaces.dll │ │ ├── nunit.exe │ │ ├── nunit.exe.config │ │ ├── nunit.fixtures.dll │ │ ├── nunit.framework.dll │ │ ├── nunit.framework.xml │ │ ├── nunit.mocks.dll │ │ ├── nunit.uikit.dll │ │ └── nunit.util.dll │ ├── NUnitForms │ │ ├── NUnitForms.Example.exe │ │ ├── NUnitForms.Player.Application.exe │ │ ├── NUnitForms.Player.dll │ │ ├── NUnitForms.Recorder.Application.exe │ │ ├── NUnitForms.Recorder.dll │ │ ├── NUnitForms.ScreenCapture.exe │ │ ├── NUnitForms.Test.dll │ │ ├── NUnitForms.dll │ │ ├── licence.txt │ │ ├── nmock.dll │ │ └── nunit.framework.dll │ ├── OPC │ │ ├── OpcRcw.Comn.dll │ │ └── OpcRcw.Da.dll │ ├── SQLite │ │ ├── Itanium │ │ │ └── System.Data.SQLite.DLL │ │ ├── license.txt │ │ └── x32 │ │ │ └── System.Data.SQLite.DLL │ ├── SharpZipLib │ │ ├── COPYING.txt │ │ ├── ICSharpCode.AvalonEdit.dll │ │ ├── ICSharpCode.SharpZipLib.dll │ │ └── ReadMe.rtf │ ├── SourceGrid4_11 │ │ ├── DevAge.Core.dll │ │ ├── DevAge.Core.xml │ │ ├── DevAge.Windows.Forms.dll │ │ ├── DevAge.Windows.Forms.xml │ │ ├── SourceGrid.Extensions.dll │ │ ├── SourceGrid.Extensions.xml │ │ ├── SourceGrid.License.txt │ │ ├── SourceGrid.dll │ │ ├── SourceGrid.xml │ │ └── WindowsFormsSample.exe │ ├── SyntaxBox │ │ ├── IronPython.syn │ │ ├── Puzzle.SyntaxBox.NET3.5.dll │ │ └── license.txt │ ├── White │ │ ├── Bricks.RuntimeFramework.dll │ │ ├── Bricks.dll │ │ ├── Castle.Core.dll │ │ ├── Castle.DynamicProxy2.dll │ │ ├── Core.dll │ │ ├── Core.xml │ │ ├── Foo.xml │ │ ├── PresentationCore.dll │ │ ├── Reporting.dll │ │ ├── Reporting.xml │ │ ├── Repository.dll │ │ ├── Repository.xml │ │ ├── Rhino.Mocks.dll │ │ ├── Rhino.Mocks.xml │ │ ├── System.Printing.dll │ │ ├── White.NUnit.dll │ │ ├── White.NUnit.xml │ │ ├── Xstream.Core.dll │ │ ├── log4net.config │ │ ├── log4net.dll │ │ └── nunit.framework.dll │ ├── icons │ │ └── famfamfam_silk_icons_v013.zip │ ├── plossum-commandline.bin │ │ ├── C5-License.txt │ │ ├── C5.dll │ │ ├── Plossum CommandLine.dll │ │ ├── ex1.exe │ │ ├── ex2.exe │ │ └── license.txt │ ├── toolbox │ │ ├── ReadMe.txt │ │ └── ToolBox.dll │ └── wpftoolkit │ │ ├── System.Windows.Controls.DataVisualization.Toolkit.dll │ │ ├── WPFToolkit.dll │ │ └── license.txt ├── Archiver.cs ├── Archiver.csproj ├── ChannelInfo.cs ├── ChannelsSettings.cs ├── Conditions.cs ├── DatabaseFactory.cs ├── DatabaseSettings.cs ├── DatabaseSettingsForm.Designer.cs ├── DatabaseSettingsForm.cs ├── DatabaseSettingsForm.resx ├── DbWriter.cs ├── Properties │ └── AssemblyInfo.cs ├── PropertyCommand.cs ├── Rule.cs ├── Storage.cs ├── StringConstants.Designer.cs └── StringConstants.resx ├── CLServer.ClientProxies ├── CLServer.ClientProxies.csproj ├── Properties │ └── AssemblyInfo.cs ├── Service.cs └── scripts │ └── generate_stub.cmd ├── CLServer ├── CLServer.csproj ├── ChannelEventHandler.cs ├── ChannelInfo.cs ├── ChannelState.cs ├── IChannelInformationRetriever.cs ├── IDataRetriever.cs ├── IDataUpdatedCallback.cs ├── Options.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── Service.cs ├── Common ├── BaseChannel.cs ├── BaseCommand.cs ├── BaseCommandContext.cs ├── BaseDropDownCommand.cs ├── ChannelMember.cs ├── Commands.cs ├── Common.csproj ├── CommunationPlugs.cs ├── ConfigurationManager.cs ├── Env.cs ├── FScada.Common.Dialog │ ├── LoginForm.cs │ └── TagForm.cs ├── Interfaces │ ├── ChannelsChangedHandler.cs │ ├── IChannel.cs │ ├── IChannelsScriptHandlers.cs │ ├── ICommand.cs │ ├── ICommandContext.cs │ ├── ICommandItems.cs │ ├── ICommands.cs │ ├── ICommunationPlugsManager.cs │ ├── ICommunicationPlug.cs │ ├── IEnvironment.cs │ ├── IExtend.cs │ ├── IExtendsManager.cs │ ├── IScriptHost.cs │ ├── IScriptsManager.cs │ ├── IVisualControlDescriptor.cs │ ├── IVisualControlsPlug.cs │ ├── Member_AlarmState.cs │ ├── Member_DeadZone.cs │ ├── Member_Description.cs │ ├── Member_FullId.cs │ ├── Member_IsReadOnly.cs │ ├── Member_ModifyTime.cs │ ├── Member_Name.cs │ ├── Member_PluginId.cs │ ├── Member_RangeMax.cs │ ├── Member_RangeMin.cs │ ├── Member_Status.cs │ ├── Member_StatusFlags.cs │ ├── Member_Type.cs │ ├── Member_Unit.cs │ ├── Member_Value.cs │ ├── Member_boolValue.cs │ ├── Member_doubleValue.cs │ ├── Member_floatValue.cs │ ├── Member_int32Value.cs │ └── NewScriptCreatedHandler.cs ├── Logger.cs ├── MRUManager.cs ├── MemberOfChannel.cs ├── MethodDialog.Designer.cs ├── MethodDialog.cs ├── MethodDialog.resx ├── NullCommand.cs ├── Project.cs ├── ProjectEntityType.cs ├── ProjectInfo.cs ├── Properties │ └── AssemblyInfo.cs ├── ReadOnlyPropertyGrid.cs ├── Schema │ ├── Actions │ │ ├── ActionsCollection.cs │ │ ├── BaseAction.cs │ │ ├── MoveAction.cs │ │ ├── RotateAction.cs │ │ ├── ShowAction.cs │ │ └── ValueAction.cs │ ├── AnimatedImage.cs │ ├── BrushProvider.cs │ ├── ChannelDataProvider.cs │ ├── ChannelDataSource.cs │ ├── ColorRangeValue.cs │ ├── Commands │ │ └── SchemaCommands.cs │ ├── Converters │ │ ├── BooleanConverter.cs │ │ ├── ComposingConverter.cs │ │ ├── ExpressionScriptConverter.cs │ │ ├── MultiStringConverter.cs │ │ ├── RangeConverter.cs │ │ ├── RangeSolidBrushConverter.cs │ │ ├── ScriptConvert.cs │ │ ├── SolidBrushConverter.cs │ │ └── VisibilityConverter.cs │ ├── CustomElements │ │ └── ElementsTemplates.xaml │ ├── MediaProvider.cs │ ├── SchemaDocument.cs │ ├── SolidBrush.cs │ ├── TextRangeValue.cs │ ├── TimeChartControl.cs │ ├── WPFShemaContainer.cs │ └── myHelpScrollViewer.cs ├── Scripting │ ├── Application.cs │ ├── ChannelsScriptHandlers.cs │ ├── EventScriptCollection.cs │ ├── FScadaApplication.cs │ ├── GenericEventHandler.cs │ ├── SchemaEventProxy.cs │ ├── Script.cs │ ├── ScriptCallInfo.cs │ ├── ScriptHost.cs │ └── ScriptManager.cs ├── SoundInfo.cs ├── StringResources.Designer.cs ├── StringResources.resx ├── StringToValue.cs └── VisualControlsPlugs.cs ├── Communication.CLServer ├── ChannelConnection.cs ├── ChannelFactory.cs ├── Communication.CLServer.csproj ├── ConnectionGroup.cs ├── ImportChannelsForm.Designer.cs ├── ImportChannelsForm.cs ├── ImportChannelsForm.resx ├── ImportProgressForm.Designer.cs ├── ImportProgressForm.cs ├── ImportProgressForm.resx ├── Plugin.cs ├── Properties │ └── AssemblyInfo.cs ├── PropertyCommand.cs ├── RemoutingChannel.cs ├── SettingsForm.Designer.cs ├── SettingsForm.cs ├── SettingsForm.resx └── StringConstants.cs ├── Communication.MODBUSPlug ├── AddStationForm.Designer.cs ├── AddStationForm.cs ├── AddStationForm.resx ├── Channel.cs ├── ChannelFactory.cs ├── Communication.MODBUSPlug.csproj ├── IModbusStation.cs ├── ModbusBaseClientStation.cs ├── ModbusEnums.cs ├── ModbusSerialClientStation.cs ├── ModbusStation.cs ├── ModbusTCPClientStation.cs ├── ModifyChannelForm.Designer.cs ├── ModifyChannelForm.cs ├── ModifyChannelForm.resx ├── ModifySerialClientStationForm.Designer.cs ├── ModifySerialClientStationForm.cs ├── ModifySerialClientStationForm.resx ├── ModifyTCPClientStationForm.Designer.cs ├── ModifyTCPClientStationForm.cs ├── ModifyTCPClientStationForm.resx ├── Plugin.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── PropertyCommand.cs ├── Resources │ └── refresh.png ├── SettingsForm.Designer.cs ├── SettingsForm.cs ├── SettingsForm.resx ├── StationFactory.cs └── StringConstants.cs ├── Communication.OPCPlug ├── ChannelFactory.cs ├── Communication.OPCPlug.csproj ├── ConnectionGroup.cs ├── ImportOPCForm.Designer.cs ├── ImportOPCForm.cs ├── ImportOPCForm.resx ├── MyTreeView.cs ├── OPCDataCallback.cs ├── OpcBaseChannel.cs ├── Plugin.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── PropertyCommand.cs ├── Resources │ └── refresh.png ├── SettingsForm.Designer.cs ├── SettingsForm.cs ├── SettingsForm.resx └── StringConstants.cs ├── Communication.SimulatorPlug ├── ChannelBase.cs ├── ChannelFactory.cs ├── Communication.SimulatorPlug.csproj ├── ComputableChannel.cs ├── CurrentTimeChannel.cs ├── GenericChannel.cs ├── Plugin.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── IronPython.syn │ ├── Resources.Designer.cs │ └── Resources.resx ├── PropertyCommand.cs ├── RampIntegerChannel.cs ├── RandomIntegerChannel.cs ├── SawIntegerChannel.cs ├── SettingsForm.Designer.cs ├── SettingsForm.cs ├── SettingsForm.resx ├── SinusDoubleChannel.cs └── StringConstants.cs ├── Communication.Timers ├── AbsoluteTimerChannel.cs ├── ChannelBase.cs ├── ChannelFactory.cs ├── Communication.Timers.csproj ├── Plugin.cs ├── Properties │ └── AssemblyInfo.cs ├── PropertyCommand.cs ├── RelativeTimerChannel.cs ├── SettingsForm.Designer.cs ├── SettingsForm.cs ├── SettingsForm.resx └── StringConstants.cs ├── Designer ├── AppCompletionDatas.cs ├── BraceFoldingStrategy.cs ├── CommandManager.cs ├── Designer.csproj ├── DialogMessages.Designer.cs ├── DialogMessages.resx ├── Dialogs │ ├── ProjectInfoDialog.Designer.cs │ ├── ProjectInfoDialog.cs │ ├── ProjectInfoDialog.resx │ ├── ProjectMediaDialog.Designer.cs │ ├── ProjectMediaDialog.cs │ ├── ProjectMediaDialog.resx │ ├── ReferanceForm.Designer.cs │ ├── ReferanceForm.cs │ ├── ReferanceForm.resx │ ├── RenameSchemaForm.Designer.cs │ ├── RenameSchemaForm.cs │ ├── RenameSchemaForm.resx │ ├── SaveDocumentsDialog.Designer.cs │ ├── SaveDocumentsDialog.cs │ ├── SaveDocumentsDialog.resx │ ├── StartForm.Designer.cs │ ├── StartForm.cs │ ├── StartForm.resx │ ├── UserDLLDialog.Designer.cs │ ├── UserDLLDialog.cs │ ├── UserDLLDialog.resx │ ├── VariablesDialog.Designer.cs │ ├── VariablesDialog.cs │ └── VariablesDialog.resx ├── HelpCommands.cs ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── MainForm.zh-CHS.resx ├── MyCompletionData.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── IronPython.syn │ ├── arrow_redo.png │ ├── arrow_undo.png │ ├── checkmark.png │ ├── cog_edit.png │ ├── colors.xml │ ├── csharp.ico │ ├── cursor.png │ ├── cut.png │ ├── db_settings.png │ ├── delete.png │ ├── disk.png │ ├── disk_edit.png │ ├── log_error.png │ ├── log_warning.png │ ├── move_object_back.png │ ├── move_object_front.png │ ├── new_file.png │ ├── open_events.png │ ├── open_file.png │ ├── open_schema.png │ ├── page_add.png │ ├── page_copy.png │ ├── page_white_add.png │ ├── page_white_code_red.png │ ├── paste_plain.png │ ├── run.png │ ├── save_file.png │ ├── script.png │ ├── script_add.png │ ├── script_remove.png │ ├── shape_ellipse_add.png │ ├── shape_group.png │ ├── shape_line_add.png │ ├── shape_square_add.png │ ├── shape_ungroup.png │ ├── splash.jpg │ ├── svg2xaml.xsl │ ├── table_add.png │ ├── textfield_add.png │ ├── tree_archiver.png │ ├── tree_channels.png │ ├── tree_plugin.png │ ├── tree_project.png │ ├── tree_rule.png │ ├── tree_schema.png │ ├── tree_schemas.png │ ├── tree_script.png │ ├── tree_scripts.png │ ├── tree_variable.png │ ├── zoom_in.png │ └── zoom_out.png ├── SchemaEditor │ ├── BindingSerializing.cs │ ├── EditorHelpers.cs │ ├── GridManager.cs │ ├── Manipulators │ │ ├── ActionsEditManipulator.cs │ │ ├── BaseManipulator.cs │ │ ├── Controlls │ │ │ ├── DragThumb.cs │ │ │ ├── PointDragThumb.cs │ │ │ ├── ResizeThumb.cs │ │ │ ├── RotateThumb.cs │ │ │ └── styles.xaml │ │ ├── DragResizeRotateManipulator.cs │ │ ├── GeometryHilightManipulator.cs │ │ ├── PolylineEditManipulantor.cs │ │ └── TextBoxManipulator.cs │ ├── ObjectsFactory.cs │ ├── PropertiesUtils │ │ ├── BaseBindingPanel.Designer.cs │ │ ├── BaseBindingPanel.cs │ │ ├── BooleanBindingPanel.Designer.cs │ │ ├── BooleanBindingPanel.cs │ │ ├── BooleanBindingPanelFactory.cs │ │ ├── CommonBindingDialog.Designer.cs │ │ ├── CommonBindingDialog.cs │ │ ├── CommonBindingDialog.resx │ │ ├── ListViewEx.cs │ │ ├── MultiTextBindingPanel.Designer.cs │ │ ├── MultiTextBindingPanel.cs │ │ ├── MultiTextBindingPanel.resx │ │ ├── MultiTextBindingPanelFactory.cs │ │ ├── MultiTextListViewEx.cs │ │ ├── NumExpressionBindingPanel.Designer.cs │ │ ├── NumExpressionBindingPanel.cs │ │ ├── NumExpressionBindingPanel.resx │ │ ├── NumericBindingPanel.Designer.cs │ │ ├── NumericBindingPanel.cs │ │ ├── NumericBindingPanel.resx │ │ ├── PropProxy.cs │ │ ├── PropertiesMap.cs │ │ ├── PropertyGridTypeEditors │ │ │ ├── ChannelSelectEditor.cs │ │ │ ├── ColorEditor.cs │ │ │ ├── ContentEditorDialog.Designer.cs │ │ │ ├── ContentEditorDialog.cs │ │ │ ├── ContentEditorDialog.resx │ │ │ ├── ImageEditor.cs │ │ │ └── StyleEditor.cs │ │ ├── PropertyWrapper.cs │ │ ├── RangeBrushBindingPanelFactory.cs │ │ ├── RangeListViewEx.cs │ │ ├── RangeSolidBrushBindingPanel.Designer.cs │ │ ├── RangeSolidBrushBindingPanel.cs │ │ ├── RangeSolidBrushBindingPanel.resx │ │ ├── ScriptExpressionBindingFactory.cs │ │ ├── ScriptExpressionBindingPanel.Designer.cs │ │ ├── ScriptExpressionBindingPanel.cs │ │ ├── ScriptExpressionBindingPanel.resx │ │ ├── SharpCodeDialog.Designer.cs │ │ ├── SharpCodeDialog.cs │ │ ├── SharpCodeDialog.resx │ │ ├── SolidBrushBindingPanel.Designer.cs │ │ ├── SolidBrushBindingPanel.cs │ │ ├── SolidBrushBindingPanel.resx │ │ ├── StringBindingPanel.Designer.cs │ │ ├── StringBindingPanel.cs │ │ ├── StringBindingPanel.resx │ │ └── TypeConverters │ │ │ └── DependencyObjectConverter.cs │ ├── SchemaCommands.cs │ ├── SchemaMenuContext.cs │ ├── SelectionManager.cs │ ├── StylesLibrary.cs │ ├── ToolDescriptor.cs │ ├── Tools │ │ ├── ActionEditTool.cs │ │ ├── BaseTool.cs │ │ ├── ControlCreateTool.cs │ │ ├── DrawTool.cs │ │ ├── EllipseTool.cs │ │ ├── HelperSelectorTool.cs │ │ ├── PolylineTool.cs │ │ ├── RectangleTool.cs │ │ ├── SelectionTool.cs │ │ └── TextBoxTool.cs │ └── UndoRedo.cs ├── StringResources.Designer.cs ├── StringResources.resx ├── Views │ ├── ArchiverSettingsView.cs │ ├── ArchiverSettingsView.resx │ ├── DocumentView.cs │ ├── EventWrapper.cs │ ├── EventsTab.cs │ ├── EventsView.cs │ ├── NodeRename.cs │ ├── ProjectContentView.cs │ ├── ProjectContentView.resx │ ├── ProjectNodes.cs │ ├── PropertyBrowserView.cs │ ├── SchemaView.cs │ ├── ScriptView.cs │ ├── ScriptView.resx │ ├── SharpCodeView.cs │ ├── SharpCodeView.resx │ ├── ToolBoxView.cs │ ├── ToolWindow.cs │ ├── VariablesView.cs │ └── VariablesView.resx ├── WindowManager.cs └── app.config ├── RunTime ├── CommandManager.cs ├── DialogMessages.Designer.cs ├── DialogMessages.resx ├── DocumentCommands.cs ├── MDIClientSupport.cs ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── db_table.png │ ├── log_error.png │ ├── log_info.png │ ├── log_warning.png │ ├── open_file.png │ ├── refresh.png │ ├── run.png │ ├── splash.jpg │ ├── splash1.jpg │ ├── stop.png │ ├── zoom_in.png │ └── zoom_out.png ├── RunTime.csproj ├── StartForm.Designer.cs ├── StartForm.cs ├── StartForm.resx ├── StringResources.Designer.cs ├── StringResources.resx ├── Views │ ├── ArchiverGraphView.cs │ ├── ArchiverGraphView.resx │ ├── ArchiverTableView.cs │ ├── ArchiverTableView.resx │ ├── DocumentView.cs │ ├── LogConsoleView.cs │ ├── LogConsoleView.resx │ ├── ProjectContentView.cs │ ├── ProjectContentView.resx │ ├── QueryView.cs │ ├── QueryView.resx │ ├── SchemaView.cs │ ├── SchemaView.resx │ ├── VariablesView.cs │ └── VariablesView.resx ├── WindowManager.cs └── app.config ├── Samples ├── BigCheckCheckBox.xaml ├── BindingExample.fs2 ├── Chart.xaml ├── CoffeeMachine.fs2 ├── Example.fs2 ├── ImagesExample.fs2 ├── MoveRotate.fs2 ├── Styles │ ├── 3DSlider.xaml │ ├── BigChecBox.xaml │ ├── GuegeTemplate.xaml │ ├── SpringScroll.xaml │ ├── nofrillsScroll.xaml │ ├── textVal.xaml │ └── thermotemplate.xaml ├── Swordfish.WPF.Charts.dll ├── TermalControl.fs2 ├── analogValue.fs2 ├── bouncing_ball.fs2 ├── chart.fs2 ├── chart_sample │ ├── Swordfish.WPF.Charts.dll │ └── project.fs2 ├── checkboxTest.fs2 ├── clinton.svg ├── hongzhi1.fs2 ├── hongzhi2.fs2 ├── lion.svg ├── modbus.fs2 ├── modbus_test_conversion.fs2 ├── picasso.svg ├── simple_script_1.fs2 ├── simple_script_2.fs2 ├── simple_script_3.fs2 ├── simple_script_4.fs2 ├── simple_script_5 (open schema).fs2 ├── tank.fs2 ├── test.fs2 ├── test1.fs2 ├── tiger.svg ├── timertest.fs2 └── water.svg ├── ScadaHMI.sln ├── VisualControls.FS2EasyControls ├── AnalogTextValue.cs ├── AnalogTextValueWrappers.cs ├── BinaryColorText.cs ├── BinaryColorTextWrappers.cs ├── Plugin.cs ├── Properties │ └── AssemblyInfo.cs ├── PropertyCommand.cs ├── StringConstants.cs └── VisualControls.FS2EasyControls.csproj ├── design ├── csharp.ico ├── csharp.psd ├── logo.ico ├── logo.jpg ├── scada-cyber-security.jpg ├── scada-full-graphic-display.jpg ├── splash.jpg ├── splash1.jpg └── tree_script.png └── images ├── db_settings.png ├── db_table.png ├── log_error.png ├── log_info.png ├── log_warning.png ├── move_object_back.png ├── move_object_front.png ├── new_file.png ├── open_events.png ├── open_file.png ├── open_schema.png ├── refresh.png ├── run.png ├── save_file.png ├── script.png ├── script_add.png ├── script_remove.png ├── stop.png ├── tree_archiver.png ├── tree_channels.png ├── tree_plugin.png ├── tree_project.png ├── tree_rule.png ├── tree_schema.png ├── tree_schemas.png ├── tree_script.png ├── tree_scripts.png ├── tree_variable.png ├── zoom_in.png └── zoom_out.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/README.md -------------------------------------------------------------------------------- /docs/images/OPC Driver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/docs/images/OPC Driver.png -------------------------------------------------------------------------------- /docs/images/PowerStation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/docs/images/PowerStation.png -------------------------------------------------------------------------------- /docs/images/Window management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/docs/images/Window management.png -------------------------------------------------------------------------------- /docs/images/binding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/docs/images/binding.png -------------------------------------------------------------------------------- /docs/images/binding_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/docs/images/binding_menu.png -------------------------------------------------------------------------------- /docs/images/communication plugin instances.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/docs/images/communication plugin instances.png -------------------------------------------------------------------------------- /docs/images/occ_fan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/docs/images/occ_fan.png -------------------------------------------------------------------------------- /docs/images/schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/docs/images/schematic.png -------------------------------------------------------------------------------- /src/Archiver/3rdParty/DataConverters/Kent.Boogaart.Converters.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/DataConverters/Kent.Boogaart.Converters.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/DataConverters/Kent.Boogaart.HelperTrinity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/DataConverters/Kent.Boogaart.HelperTrinity.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/DataConverters/WPFConvertersAPI.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/DataConverters/WPFConvertersAPI.chm -------------------------------------------------------------------------------- /src/Archiver/3rdParty/DataConverters/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/DataConverters/license.txt -------------------------------------------------------------------------------- /src/Archiver/3rdParty/DockPanel/WeifenLuo.WinFormsUI.Docking.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/DockPanel/WeifenLuo.WinFormsUI.Docking.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/DockPanel/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/DockPanel/license.txt -------------------------------------------------------------------------------- /src/Archiver/3rdParty/IronPython/IronPython.Modules.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/IronPython/IronPython.Modules.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/IronPython/IronPython.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/IronPython/IronPython.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/IronPython/License.Rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/IronPython/License.Rtf -------------------------------------------------------------------------------- /src/Archiver/3rdParty/IronPython/Microsoft.Scripting.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/IronPython/Microsoft.Scripting.Core.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/IronPython/Microsoft.Scripting.ExtensionAttribute.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/IronPython/Microsoft.Scripting.ExtensionAttribute.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/IronPython/Microsoft.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/IronPython/Microsoft.Scripting.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/NModbus/FTD2XX.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/NModbus/FTD2XX.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/NModbus/FtdAdapter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/NModbus/FtdAdapter.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/NModbus/Modbus.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/NModbus/Modbus.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/NModbus/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/NModbus/README.txt -------------------------------------------------------------------------------- /src/Archiver/3rdParty/NModbus/Unme.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/NModbus/Unme.Common.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/NModbus/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/NModbus/log4net.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/NModbus/mod_RSsim.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/NModbus/mod_RSsim.exe -------------------------------------------------------------------------------- /src/Archiver/3rdParty/NPlot/NPlot.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/NPlot/NPlot.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/NPlot/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/NPlot/license.txt -------------------------------------------------------------------------------- /src/Archiver/3rdParty/NUnit/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/NUnit/license.txt -------------------------------------------------------------------------------- /src/Archiver/3rdParty/NUnit/nunit-gui-runner.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/NUnit/nunit-gui-runner.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/NUnit/nunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/NUnit/nunit.core.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/NUnit/nunit.core.interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/NUnit/nunit.core.interfaces.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/NUnit/nunit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/NUnit/nunit.exe -------------------------------------------------------------------------------- /src/Archiver/3rdParty/NUnit/nunit.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/NUnit/nunit.exe.config -------------------------------------------------------------------------------- /src/Archiver/3rdParty/NUnit/nunit.fixtures.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/NUnit/nunit.fixtures.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/NUnit/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/NUnit/nunit.framework.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/NUnit/nunit.framework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/NUnit/nunit.framework.xml -------------------------------------------------------------------------------- /src/Archiver/3rdParty/NUnit/nunit.mocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/NUnit/nunit.mocks.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/NUnit/nunit.uikit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/NUnit/nunit.uikit.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/NUnit/nunit.util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/NUnit/nunit.util.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/NUnitForms/NUnitForms.Example.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/NUnitForms/NUnitForms.Example.exe -------------------------------------------------------------------------------- /src/Archiver/3rdParty/NUnitForms/NUnitForms.Player.Application.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/NUnitForms/NUnitForms.Player.Application.exe -------------------------------------------------------------------------------- /src/Archiver/3rdParty/NUnitForms/NUnitForms.Player.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/NUnitForms/NUnitForms.Player.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/NUnitForms/NUnitForms.Recorder.Application.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/NUnitForms/NUnitForms.Recorder.Application.exe -------------------------------------------------------------------------------- /src/Archiver/3rdParty/NUnitForms/NUnitForms.Recorder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/NUnitForms/NUnitForms.Recorder.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/NUnitForms/NUnitForms.ScreenCapture.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/NUnitForms/NUnitForms.ScreenCapture.exe -------------------------------------------------------------------------------- /src/Archiver/3rdParty/NUnitForms/NUnitForms.Test.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/NUnitForms/NUnitForms.Test.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/NUnitForms/NUnitForms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/NUnitForms/NUnitForms.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/NUnitForms/licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/NUnitForms/licence.txt -------------------------------------------------------------------------------- /src/Archiver/3rdParty/NUnitForms/nmock.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/NUnitForms/nmock.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/NUnitForms/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/NUnitForms/nunit.framework.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/OPC/OpcRcw.Comn.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/OPC/OpcRcw.Comn.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/OPC/OpcRcw.Da.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/OPC/OpcRcw.Da.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/SQLite/Itanium/System.Data.SQLite.DLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/SQLite/Itanium/System.Data.SQLite.DLL -------------------------------------------------------------------------------- /src/Archiver/3rdParty/SQLite/license.txt: -------------------------------------------------------------------------------- 1 | Public Domain -------------------------------------------------------------------------------- /src/Archiver/3rdParty/SQLite/x32/System.Data.SQLite.DLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/SQLite/x32/System.Data.SQLite.DLL -------------------------------------------------------------------------------- /src/Archiver/3rdParty/SharpZipLib/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/SharpZipLib/COPYING.txt -------------------------------------------------------------------------------- /src/Archiver/3rdParty/SharpZipLib/ICSharpCode.AvalonEdit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/SharpZipLib/ICSharpCode.AvalonEdit.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/SharpZipLib/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/SharpZipLib/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/SharpZipLib/ReadMe.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/SharpZipLib/ReadMe.rtf -------------------------------------------------------------------------------- /src/Archiver/3rdParty/SourceGrid4_11/DevAge.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/SourceGrid4_11/DevAge.Core.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/SourceGrid4_11/DevAge.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/SourceGrid4_11/DevAge.Core.xml -------------------------------------------------------------------------------- /src/Archiver/3rdParty/SourceGrid4_11/DevAge.Windows.Forms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/SourceGrid4_11/DevAge.Windows.Forms.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/SourceGrid4_11/DevAge.Windows.Forms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/SourceGrid4_11/DevAge.Windows.Forms.xml -------------------------------------------------------------------------------- /src/Archiver/3rdParty/SourceGrid4_11/SourceGrid.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/SourceGrid4_11/SourceGrid.Extensions.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/SourceGrid4_11/SourceGrid.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/SourceGrid4_11/SourceGrid.Extensions.xml -------------------------------------------------------------------------------- /src/Archiver/3rdParty/SourceGrid4_11/SourceGrid.License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/SourceGrid4_11/SourceGrid.License.txt -------------------------------------------------------------------------------- /src/Archiver/3rdParty/SourceGrid4_11/SourceGrid.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/SourceGrid4_11/SourceGrid.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/SourceGrid4_11/SourceGrid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/SourceGrid4_11/SourceGrid.xml -------------------------------------------------------------------------------- /src/Archiver/3rdParty/SourceGrid4_11/WindowsFormsSample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/SourceGrid4_11/WindowsFormsSample.exe -------------------------------------------------------------------------------- /src/Archiver/3rdParty/SyntaxBox/IronPython.syn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/SyntaxBox/IronPython.syn -------------------------------------------------------------------------------- /src/Archiver/3rdParty/SyntaxBox/Puzzle.SyntaxBox.NET3.5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/SyntaxBox/Puzzle.SyntaxBox.NET3.5.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/SyntaxBox/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/SyntaxBox/license.txt -------------------------------------------------------------------------------- /src/Archiver/3rdParty/White/Bricks.RuntimeFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/White/Bricks.RuntimeFramework.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/White/Bricks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/White/Bricks.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/White/Castle.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/White/Castle.Core.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/White/Castle.DynamicProxy2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/White/Castle.DynamicProxy2.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/White/Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/White/Core.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/White/Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/White/Core.xml -------------------------------------------------------------------------------- /src/Archiver/3rdParty/White/Foo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/White/Foo.xml -------------------------------------------------------------------------------- /src/Archiver/3rdParty/White/PresentationCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/White/PresentationCore.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/White/Reporting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/White/Reporting.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/White/Reporting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/White/Reporting.xml -------------------------------------------------------------------------------- /src/Archiver/3rdParty/White/Repository.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/White/Repository.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/White/Repository.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/White/Repository.xml -------------------------------------------------------------------------------- /src/Archiver/3rdParty/White/Rhino.Mocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/White/Rhino.Mocks.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/White/Rhino.Mocks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/White/Rhino.Mocks.xml -------------------------------------------------------------------------------- /src/Archiver/3rdParty/White/System.Printing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/White/System.Printing.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/White/White.NUnit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/White/White.NUnit.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/White/White.NUnit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/White/White.NUnit.xml -------------------------------------------------------------------------------- /src/Archiver/3rdParty/White/Xstream.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/White/Xstream.Core.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/White/log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/White/log4net.config -------------------------------------------------------------------------------- /src/Archiver/3rdParty/White/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/White/log4net.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/White/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/White/nunit.framework.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/icons/famfamfam_silk_icons_v013.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/icons/famfamfam_silk_icons_v013.zip -------------------------------------------------------------------------------- /src/Archiver/3rdParty/plossum-commandline.bin/C5-License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/plossum-commandline.bin/C5-License.txt -------------------------------------------------------------------------------- /src/Archiver/3rdParty/plossum-commandline.bin/C5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/plossum-commandline.bin/C5.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/plossum-commandline.bin/Plossum CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/plossum-commandline.bin/Plossum CommandLine.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/plossum-commandline.bin/ex1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/plossum-commandline.bin/ex1.exe -------------------------------------------------------------------------------- /src/Archiver/3rdParty/plossum-commandline.bin/ex2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/plossum-commandline.bin/ex2.exe -------------------------------------------------------------------------------- /src/Archiver/3rdParty/plossum-commandline.bin/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/plossum-commandline.bin/license.txt -------------------------------------------------------------------------------- /src/Archiver/3rdParty/toolbox/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/toolbox/ReadMe.txt -------------------------------------------------------------------------------- /src/Archiver/3rdParty/toolbox/ToolBox.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/toolbox/ToolBox.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/wpftoolkit/System.Windows.Controls.DataVisualization.Toolkit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/wpftoolkit/System.Windows.Controls.DataVisualization.Toolkit.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/wpftoolkit/WPFToolkit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/wpftoolkit/WPFToolkit.dll -------------------------------------------------------------------------------- /src/Archiver/3rdParty/wpftoolkit/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/3rdParty/wpftoolkit/license.txt -------------------------------------------------------------------------------- /src/Archiver/Archiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/Archiver.cs -------------------------------------------------------------------------------- /src/Archiver/Archiver.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/Archiver.csproj -------------------------------------------------------------------------------- /src/Archiver/ChannelInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/ChannelInfo.cs -------------------------------------------------------------------------------- /src/Archiver/ChannelsSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/ChannelsSettings.cs -------------------------------------------------------------------------------- /src/Archiver/Conditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/Conditions.cs -------------------------------------------------------------------------------- /src/Archiver/DatabaseFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/DatabaseFactory.cs -------------------------------------------------------------------------------- /src/Archiver/DatabaseSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/DatabaseSettings.cs -------------------------------------------------------------------------------- /src/Archiver/DatabaseSettingsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/DatabaseSettingsForm.Designer.cs -------------------------------------------------------------------------------- /src/Archiver/DatabaseSettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/DatabaseSettingsForm.cs -------------------------------------------------------------------------------- /src/Archiver/DatabaseSettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/DatabaseSettingsForm.resx -------------------------------------------------------------------------------- /src/Archiver/DbWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/DbWriter.cs -------------------------------------------------------------------------------- /src/Archiver/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Archiver/PropertyCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/PropertyCommand.cs -------------------------------------------------------------------------------- /src/Archiver/Rule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/Rule.cs -------------------------------------------------------------------------------- /src/Archiver/Storage.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace FreeSCADA.Archiver 3 | { 4 | public class Storage 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Archiver/StringConstants.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/StringConstants.Designer.cs -------------------------------------------------------------------------------- /src/Archiver/StringConstants.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Archiver/StringConstants.resx -------------------------------------------------------------------------------- /src/CLServer.ClientProxies/CLServer.ClientProxies.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/CLServer.ClientProxies/CLServer.ClientProxies.csproj -------------------------------------------------------------------------------- /src/CLServer.ClientProxies/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/CLServer.ClientProxies/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/CLServer.ClientProxies/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/CLServer.ClientProxies/Service.cs -------------------------------------------------------------------------------- /src/CLServer.ClientProxies/scripts/generate_stub.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/CLServer.ClientProxies/scripts/generate_stub.cmd -------------------------------------------------------------------------------- /src/CLServer/CLServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/CLServer/CLServer.csproj -------------------------------------------------------------------------------- /src/CLServer/ChannelEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/CLServer/ChannelEventHandler.cs -------------------------------------------------------------------------------- /src/CLServer/ChannelInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/CLServer/ChannelInfo.cs -------------------------------------------------------------------------------- /src/CLServer/ChannelState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/CLServer/ChannelState.cs -------------------------------------------------------------------------------- /src/CLServer/IChannelInformationRetriever.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/CLServer/IChannelInformationRetriever.cs -------------------------------------------------------------------------------- /src/CLServer/IDataRetriever.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/CLServer/IDataRetriever.cs -------------------------------------------------------------------------------- /src/CLServer/IDataUpdatedCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/CLServer/IDataUpdatedCallback.cs -------------------------------------------------------------------------------- /src/CLServer/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/CLServer/Options.cs -------------------------------------------------------------------------------- /src/CLServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/CLServer/Program.cs -------------------------------------------------------------------------------- /src/CLServer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/CLServer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/CLServer/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/CLServer/Service.cs -------------------------------------------------------------------------------- /src/Common/BaseChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/BaseChannel.cs -------------------------------------------------------------------------------- /src/Common/BaseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/BaseCommand.cs -------------------------------------------------------------------------------- /src/Common/BaseCommandContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/BaseCommandContext.cs -------------------------------------------------------------------------------- /src/Common/BaseDropDownCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/BaseDropDownCommand.cs -------------------------------------------------------------------------------- /src/Common/ChannelMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/ChannelMember.cs -------------------------------------------------------------------------------- /src/Common/Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Commands.cs -------------------------------------------------------------------------------- /src/Common/Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Common.csproj -------------------------------------------------------------------------------- /src/Common/CommunationPlugs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/CommunationPlugs.cs -------------------------------------------------------------------------------- /src/Common/ConfigurationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/ConfigurationManager.cs -------------------------------------------------------------------------------- /src/Common/Env.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Env.cs -------------------------------------------------------------------------------- /src/Common/FScada.Common.Dialog/LoginForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/FScada.Common.Dialog/LoginForm.cs -------------------------------------------------------------------------------- /src/Common/FScada.Common.Dialog/TagForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/FScada.Common.Dialog/TagForm.cs -------------------------------------------------------------------------------- /src/Common/Interfaces/ChannelsChangedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Interfaces/ChannelsChangedHandler.cs -------------------------------------------------------------------------------- /src/Common/Interfaces/IChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Interfaces/IChannel.cs -------------------------------------------------------------------------------- /src/Common/Interfaces/IChannelsScriptHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Interfaces/IChannelsScriptHandlers.cs -------------------------------------------------------------------------------- /src/Common/Interfaces/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Interfaces/ICommand.cs -------------------------------------------------------------------------------- /src/Common/Interfaces/ICommandContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Interfaces/ICommandContext.cs -------------------------------------------------------------------------------- /src/Common/Interfaces/ICommandItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Interfaces/ICommandItems.cs -------------------------------------------------------------------------------- /src/Common/Interfaces/ICommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Interfaces/ICommands.cs -------------------------------------------------------------------------------- /src/Common/Interfaces/ICommunationPlugsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Interfaces/ICommunationPlugsManager.cs -------------------------------------------------------------------------------- /src/Common/Interfaces/ICommunicationPlug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Interfaces/ICommunicationPlug.cs -------------------------------------------------------------------------------- /src/Common/Interfaces/IEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Interfaces/IEnvironment.cs -------------------------------------------------------------------------------- /src/Common/Interfaces/IExtend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Interfaces/IExtend.cs -------------------------------------------------------------------------------- /src/Common/Interfaces/IExtendsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Interfaces/IExtendsManager.cs -------------------------------------------------------------------------------- /src/Common/Interfaces/IScriptHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Interfaces/IScriptHost.cs -------------------------------------------------------------------------------- /src/Common/Interfaces/IScriptsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Interfaces/IScriptsManager.cs -------------------------------------------------------------------------------- /src/Common/Interfaces/IVisualControlDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Interfaces/IVisualControlDescriptor.cs -------------------------------------------------------------------------------- /src/Common/Interfaces/IVisualControlsPlug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Interfaces/IVisualControlsPlug.cs -------------------------------------------------------------------------------- /src/Common/Interfaces/Member_AlarmState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Interfaces/Member_AlarmState.cs -------------------------------------------------------------------------------- /src/Common/Interfaces/Member_DeadZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Interfaces/Member_DeadZone.cs -------------------------------------------------------------------------------- /src/Common/Interfaces/Member_Description.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Interfaces/Member_Description.cs -------------------------------------------------------------------------------- /src/Common/Interfaces/Member_FullId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Interfaces/Member_FullId.cs -------------------------------------------------------------------------------- /src/Common/Interfaces/Member_IsReadOnly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Interfaces/Member_IsReadOnly.cs -------------------------------------------------------------------------------- /src/Common/Interfaces/Member_ModifyTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Interfaces/Member_ModifyTime.cs -------------------------------------------------------------------------------- /src/Common/Interfaces/Member_Name.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Interfaces/Member_Name.cs -------------------------------------------------------------------------------- /src/Common/Interfaces/Member_PluginId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Interfaces/Member_PluginId.cs -------------------------------------------------------------------------------- /src/Common/Interfaces/Member_RangeMax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Interfaces/Member_RangeMax.cs -------------------------------------------------------------------------------- /src/Common/Interfaces/Member_RangeMin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Interfaces/Member_RangeMin.cs -------------------------------------------------------------------------------- /src/Common/Interfaces/Member_Status.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Interfaces/Member_Status.cs -------------------------------------------------------------------------------- /src/Common/Interfaces/Member_StatusFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Interfaces/Member_StatusFlags.cs -------------------------------------------------------------------------------- /src/Common/Interfaces/Member_Type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Interfaces/Member_Type.cs -------------------------------------------------------------------------------- /src/Common/Interfaces/Member_Unit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Interfaces/Member_Unit.cs -------------------------------------------------------------------------------- /src/Common/Interfaces/Member_Value.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Interfaces/Member_Value.cs -------------------------------------------------------------------------------- /src/Common/Interfaces/Member_boolValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Interfaces/Member_boolValue.cs -------------------------------------------------------------------------------- /src/Common/Interfaces/Member_doubleValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Interfaces/Member_doubleValue.cs -------------------------------------------------------------------------------- /src/Common/Interfaces/Member_floatValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Interfaces/Member_floatValue.cs -------------------------------------------------------------------------------- /src/Common/Interfaces/Member_int32Value.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Interfaces/Member_int32Value.cs -------------------------------------------------------------------------------- /src/Common/Interfaces/NewScriptCreatedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Interfaces/NewScriptCreatedHandler.cs -------------------------------------------------------------------------------- /src/Common/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Logger.cs -------------------------------------------------------------------------------- /src/Common/MRUManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/MRUManager.cs -------------------------------------------------------------------------------- /src/Common/MemberOfChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/MemberOfChannel.cs -------------------------------------------------------------------------------- /src/Common/MethodDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/MethodDialog.Designer.cs -------------------------------------------------------------------------------- /src/Common/MethodDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/MethodDialog.cs -------------------------------------------------------------------------------- /src/Common/MethodDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/MethodDialog.resx -------------------------------------------------------------------------------- /src/Common/NullCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/NullCommand.cs -------------------------------------------------------------------------------- /src/Common/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Project.cs -------------------------------------------------------------------------------- /src/Common/ProjectEntityType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/ProjectEntityType.cs -------------------------------------------------------------------------------- /src/Common/ProjectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/ProjectInfo.cs -------------------------------------------------------------------------------- /src/Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Common/ReadOnlyPropertyGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/ReadOnlyPropertyGrid.cs -------------------------------------------------------------------------------- /src/Common/Schema/Actions/ActionsCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Schema/Actions/ActionsCollection.cs -------------------------------------------------------------------------------- /src/Common/Schema/Actions/BaseAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Schema/Actions/BaseAction.cs -------------------------------------------------------------------------------- /src/Common/Schema/Actions/MoveAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Schema/Actions/MoveAction.cs -------------------------------------------------------------------------------- /src/Common/Schema/Actions/RotateAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Schema/Actions/RotateAction.cs -------------------------------------------------------------------------------- /src/Common/Schema/Actions/ShowAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Schema/Actions/ShowAction.cs -------------------------------------------------------------------------------- /src/Common/Schema/Actions/ValueAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Schema/Actions/ValueAction.cs -------------------------------------------------------------------------------- /src/Common/Schema/AnimatedImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Schema/AnimatedImage.cs -------------------------------------------------------------------------------- /src/Common/Schema/BrushProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Schema/BrushProvider.cs -------------------------------------------------------------------------------- /src/Common/Schema/ChannelDataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Schema/ChannelDataProvider.cs -------------------------------------------------------------------------------- /src/Common/Schema/ChannelDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Schema/ChannelDataSource.cs -------------------------------------------------------------------------------- /src/Common/Schema/ColorRangeValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Schema/ColorRangeValue.cs -------------------------------------------------------------------------------- /src/Common/Schema/Commands/SchemaCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Schema/Commands/SchemaCommands.cs -------------------------------------------------------------------------------- /src/Common/Schema/Converters/BooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Schema/Converters/BooleanConverter.cs -------------------------------------------------------------------------------- /src/Common/Schema/Converters/ComposingConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Schema/Converters/ComposingConverter.cs -------------------------------------------------------------------------------- /src/Common/Schema/Converters/ExpressionScriptConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Schema/Converters/ExpressionScriptConverter.cs -------------------------------------------------------------------------------- /src/Common/Schema/Converters/MultiStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Schema/Converters/MultiStringConverter.cs -------------------------------------------------------------------------------- /src/Common/Schema/Converters/RangeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Schema/Converters/RangeConverter.cs -------------------------------------------------------------------------------- /src/Common/Schema/Converters/RangeSolidBrushConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Schema/Converters/RangeSolidBrushConverter.cs -------------------------------------------------------------------------------- /src/Common/Schema/Converters/ScriptConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Schema/Converters/ScriptConvert.cs -------------------------------------------------------------------------------- /src/Common/Schema/Converters/SolidBrushConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Schema/Converters/SolidBrushConverter.cs -------------------------------------------------------------------------------- /src/Common/Schema/Converters/VisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Schema/Converters/VisibilityConverter.cs -------------------------------------------------------------------------------- /src/Common/Schema/CustomElements/ElementsTemplates.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Schema/CustomElements/ElementsTemplates.xaml -------------------------------------------------------------------------------- /src/Common/Schema/MediaProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Schema/MediaProvider.cs -------------------------------------------------------------------------------- /src/Common/Schema/SchemaDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Schema/SchemaDocument.cs -------------------------------------------------------------------------------- /src/Common/Schema/SolidBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Schema/SolidBrush.cs -------------------------------------------------------------------------------- /src/Common/Schema/TextRangeValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Schema/TextRangeValue.cs -------------------------------------------------------------------------------- /src/Common/Schema/TimeChartControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Schema/TimeChartControl.cs -------------------------------------------------------------------------------- /src/Common/Schema/WPFShemaContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Schema/WPFShemaContainer.cs -------------------------------------------------------------------------------- /src/Common/Schema/myHelpScrollViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Schema/myHelpScrollViewer.cs -------------------------------------------------------------------------------- /src/Common/Scripting/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Scripting/Application.cs -------------------------------------------------------------------------------- /src/Common/Scripting/ChannelsScriptHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Scripting/ChannelsScriptHandlers.cs -------------------------------------------------------------------------------- /src/Common/Scripting/EventScriptCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Scripting/EventScriptCollection.cs -------------------------------------------------------------------------------- /src/Common/Scripting/FScadaApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Scripting/FScadaApplication.cs -------------------------------------------------------------------------------- /src/Common/Scripting/GenericEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Scripting/GenericEventHandler.cs -------------------------------------------------------------------------------- /src/Common/Scripting/SchemaEventProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Scripting/SchemaEventProxy.cs -------------------------------------------------------------------------------- /src/Common/Scripting/Script.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Scripting/Script.cs -------------------------------------------------------------------------------- /src/Common/Scripting/ScriptCallInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Scripting/ScriptCallInfo.cs -------------------------------------------------------------------------------- /src/Common/Scripting/ScriptHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Scripting/ScriptHost.cs -------------------------------------------------------------------------------- /src/Common/Scripting/ScriptManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/Scripting/ScriptManager.cs -------------------------------------------------------------------------------- /src/Common/SoundInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/SoundInfo.cs -------------------------------------------------------------------------------- /src/Common/StringResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/StringResources.Designer.cs -------------------------------------------------------------------------------- /src/Common/StringResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/StringResources.resx -------------------------------------------------------------------------------- /src/Common/StringToValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/StringToValue.cs -------------------------------------------------------------------------------- /src/Common/VisualControlsPlugs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Common/VisualControlsPlugs.cs -------------------------------------------------------------------------------- /src/Communication.CLServer/ChannelConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.CLServer/ChannelConnection.cs -------------------------------------------------------------------------------- /src/Communication.CLServer/ChannelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.CLServer/ChannelFactory.cs -------------------------------------------------------------------------------- /src/Communication.CLServer/Communication.CLServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.CLServer/Communication.CLServer.csproj -------------------------------------------------------------------------------- /src/Communication.CLServer/ConnectionGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.CLServer/ConnectionGroup.cs -------------------------------------------------------------------------------- /src/Communication.CLServer/ImportChannelsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.CLServer/ImportChannelsForm.Designer.cs -------------------------------------------------------------------------------- /src/Communication.CLServer/ImportChannelsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.CLServer/ImportChannelsForm.cs -------------------------------------------------------------------------------- /src/Communication.CLServer/ImportChannelsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.CLServer/ImportChannelsForm.resx -------------------------------------------------------------------------------- /src/Communication.CLServer/ImportProgressForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.CLServer/ImportProgressForm.Designer.cs -------------------------------------------------------------------------------- /src/Communication.CLServer/ImportProgressForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.CLServer/ImportProgressForm.cs -------------------------------------------------------------------------------- /src/Communication.CLServer/ImportProgressForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.CLServer/ImportProgressForm.resx -------------------------------------------------------------------------------- /src/Communication.CLServer/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.CLServer/Plugin.cs -------------------------------------------------------------------------------- /src/Communication.CLServer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.CLServer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Communication.CLServer/PropertyCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.CLServer/PropertyCommand.cs -------------------------------------------------------------------------------- /src/Communication.CLServer/RemoutingChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.CLServer/RemoutingChannel.cs -------------------------------------------------------------------------------- /src/Communication.CLServer/SettingsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.CLServer/SettingsForm.Designer.cs -------------------------------------------------------------------------------- /src/Communication.CLServer/SettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.CLServer/SettingsForm.cs -------------------------------------------------------------------------------- /src/Communication.CLServer/SettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.CLServer/SettingsForm.resx -------------------------------------------------------------------------------- /src/Communication.CLServer/StringConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.CLServer/StringConstants.cs -------------------------------------------------------------------------------- /src/Communication.MODBUSPlug/AddStationForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.MODBUSPlug/AddStationForm.Designer.cs -------------------------------------------------------------------------------- /src/Communication.MODBUSPlug/AddStationForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.MODBUSPlug/AddStationForm.cs -------------------------------------------------------------------------------- /src/Communication.MODBUSPlug/AddStationForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.MODBUSPlug/AddStationForm.resx -------------------------------------------------------------------------------- /src/Communication.MODBUSPlug/Channel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.MODBUSPlug/Channel.cs -------------------------------------------------------------------------------- /src/Communication.MODBUSPlug/ChannelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.MODBUSPlug/ChannelFactory.cs -------------------------------------------------------------------------------- /src/Communication.MODBUSPlug/Communication.MODBUSPlug.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.MODBUSPlug/Communication.MODBUSPlug.csproj -------------------------------------------------------------------------------- /src/Communication.MODBUSPlug/IModbusStation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.MODBUSPlug/IModbusStation.cs -------------------------------------------------------------------------------- /src/Communication.MODBUSPlug/ModbusBaseClientStation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.MODBUSPlug/ModbusBaseClientStation.cs -------------------------------------------------------------------------------- /src/Communication.MODBUSPlug/ModbusEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.MODBUSPlug/ModbusEnums.cs -------------------------------------------------------------------------------- /src/Communication.MODBUSPlug/ModbusSerialClientStation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.MODBUSPlug/ModbusSerialClientStation.cs -------------------------------------------------------------------------------- /src/Communication.MODBUSPlug/ModbusStation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.MODBUSPlug/ModbusStation.cs -------------------------------------------------------------------------------- /src/Communication.MODBUSPlug/ModbusTCPClientStation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.MODBUSPlug/ModbusTCPClientStation.cs -------------------------------------------------------------------------------- /src/Communication.MODBUSPlug/ModifyChannelForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.MODBUSPlug/ModifyChannelForm.Designer.cs -------------------------------------------------------------------------------- /src/Communication.MODBUSPlug/ModifyChannelForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.MODBUSPlug/ModifyChannelForm.cs -------------------------------------------------------------------------------- /src/Communication.MODBUSPlug/ModifyChannelForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.MODBUSPlug/ModifyChannelForm.resx -------------------------------------------------------------------------------- /src/Communication.MODBUSPlug/ModifySerialClientStationForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.MODBUSPlug/ModifySerialClientStationForm.Designer.cs -------------------------------------------------------------------------------- /src/Communication.MODBUSPlug/ModifySerialClientStationForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.MODBUSPlug/ModifySerialClientStationForm.cs -------------------------------------------------------------------------------- /src/Communication.MODBUSPlug/ModifySerialClientStationForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.MODBUSPlug/ModifySerialClientStationForm.resx -------------------------------------------------------------------------------- /src/Communication.MODBUSPlug/ModifyTCPClientStationForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.MODBUSPlug/ModifyTCPClientStationForm.Designer.cs -------------------------------------------------------------------------------- /src/Communication.MODBUSPlug/ModifyTCPClientStationForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.MODBUSPlug/ModifyTCPClientStationForm.cs -------------------------------------------------------------------------------- /src/Communication.MODBUSPlug/ModifyTCPClientStationForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.MODBUSPlug/ModifyTCPClientStationForm.resx -------------------------------------------------------------------------------- /src/Communication.MODBUSPlug/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.MODBUSPlug/Plugin.cs -------------------------------------------------------------------------------- /src/Communication.MODBUSPlug/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.MODBUSPlug/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Communication.MODBUSPlug/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.MODBUSPlug/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Communication.MODBUSPlug/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.MODBUSPlug/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Communication.MODBUSPlug/PropertyCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.MODBUSPlug/PropertyCommand.cs -------------------------------------------------------------------------------- /src/Communication.MODBUSPlug/Resources/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.MODBUSPlug/Resources/refresh.png -------------------------------------------------------------------------------- /src/Communication.MODBUSPlug/SettingsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.MODBUSPlug/SettingsForm.Designer.cs -------------------------------------------------------------------------------- /src/Communication.MODBUSPlug/SettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.MODBUSPlug/SettingsForm.cs -------------------------------------------------------------------------------- /src/Communication.MODBUSPlug/SettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.MODBUSPlug/SettingsForm.resx -------------------------------------------------------------------------------- /src/Communication.MODBUSPlug/StationFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.MODBUSPlug/StationFactory.cs -------------------------------------------------------------------------------- /src/Communication.MODBUSPlug/StringConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.MODBUSPlug/StringConstants.cs -------------------------------------------------------------------------------- /src/Communication.OPCPlug/ChannelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.OPCPlug/ChannelFactory.cs -------------------------------------------------------------------------------- /src/Communication.OPCPlug/Communication.OPCPlug.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.OPCPlug/Communication.OPCPlug.csproj -------------------------------------------------------------------------------- /src/Communication.OPCPlug/ConnectionGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.OPCPlug/ConnectionGroup.cs -------------------------------------------------------------------------------- /src/Communication.OPCPlug/ImportOPCForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.OPCPlug/ImportOPCForm.Designer.cs -------------------------------------------------------------------------------- /src/Communication.OPCPlug/ImportOPCForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.OPCPlug/ImportOPCForm.cs -------------------------------------------------------------------------------- /src/Communication.OPCPlug/ImportOPCForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.OPCPlug/ImportOPCForm.resx -------------------------------------------------------------------------------- /src/Communication.OPCPlug/MyTreeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.OPCPlug/MyTreeView.cs -------------------------------------------------------------------------------- /src/Communication.OPCPlug/OPCDataCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.OPCPlug/OPCDataCallback.cs -------------------------------------------------------------------------------- /src/Communication.OPCPlug/OpcBaseChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.OPCPlug/OpcBaseChannel.cs -------------------------------------------------------------------------------- /src/Communication.OPCPlug/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.OPCPlug/Plugin.cs -------------------------------------------------------------------------------- /src/Communication.OPCPlug/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.OPCPlug/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Communication.OPCPlug/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.OPCPlug/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Communication.OPCPlug/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.OPCPlug/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Communication.OPCPlug/PropertyCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.OPCPlug/PropertyCommand.cs -------------------------------------------------------------------------------- /src/Communication.OPCPlug/Resources/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.OPCPlug/Resources/refresh.png -------------------------------------------------------------------------------- /src/Communication.OPCPlug/SettingsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.OPCPlug/SettingsForm.Designer.cs -------------------------------------------------------------------------------- /src/Communication.OPCPlug/SettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.OPCPlug/SettingsForm.cs -------------------------------------------------------------------------------- /src/Communication.OPCPlug/SettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.OPCPlug/SettingsForm.resx -------------------------------------------------------------------------------- /src/Communication.OPCPlug/StringConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.OPCPlug/StringConstants.cs -------------------------------------------------------------------------------- /src/Communication.SimulatorPlug/ChannelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.SimulatorPlug/ChannelBase.cs -------------------------------------------------------------------------------- /src/Communication.SimulatorPlug/ChannelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.SimulatorPlug/ChannelFactory.cs -------------------------------------------------------------------------------- /src/Communication.SimulatorPlug/Communication.SimulatorPlug.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.SimulatorPlug/Communication.SimulatorPlug.csproj -------------------------------------------------------------------------------- /src/Communication.SimulatorPlug/ComputableChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.SimulatorPlug/ComputableChannel.cs -------------------------------------------------------------------------------- /src/Communication.SimulatorPlug/CurrentTimeChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.SimulatorPlug/CurrentTimeChannel.cs -------------------------------------------------------------------------------- /src/Communication.SimulatorPlug/GenericChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.SimulatorPlug/GenericChannel.cs -------------------------------------------------------------------------------- /src/Communication.SimulatorPlug/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.SimulatorPlug/Plugin.cs -------------------------------------------------------------------------------- /src/Communication.SimulatorPlug/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.SimulatorPlug/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Communication.SimulatorPlug/Properties/IronPython.syn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.SimulatorPlug/Properties/IronPython.syn -------------------------------------------------------------------------------- /src/Communication.SimulatorPlug/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.SimulatorPlug/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Communication.SimulatorPlug/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.SimulatorPlug/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Communication.SimulatorPlug/PropertyCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.SimulatorPlug/PropertyCommand.cs -------------------------------------------------------------------------------- /src/Communication.SimulatorPlug/RampIntegerChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.SimulatorPlug/RampIntegerChannel.cs -------------------------------------------------------------------------------- /src/Communication.SimulatorPlug/RandomIntegerChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.SimulatorPlug/RandomIntegerChannel.cs -------------------------------------------------------------------------------- /src/Communication.SimulatorPlug/SawIntegerChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.SimulatorPlug/SawIntegerChannel.cs -------------------------------------------------------------------------------- /src/Communication.SimulatorPlug/SettingsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.SimulatorPlug/SettingsForm.Designer.cs -------------------------------------------------------------------------------- /src/Communication.SimulatorPlug/SettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.SimulatorPlug/SettingsForm.cs -------------------------------------------------------------------------------- /src/Communication.SimulatorPlug/SettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.SimulatorPlug/SettingsForm.resx -------------------------------------------------------------------------------- /src/Communication.SimulatorPlug/SinusDoubleChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.SimulatorPlug/SinusDoubleChannel.cs -------------------------------------------------------------------------------- /src/Communication.SimulatorPlug/StringConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.SimulatorPlug/StringConstants.cs -------------------------------------------------------------------------------- /src/Communication.Timers/AbsoluteTimerChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.Timers/AbsoluteTimerChannel.cs -------------------------------------------------------------------------------- /src/Communication.Timers/ChannelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.Timers/ChannelBase.cs -------------------------------------------------------------------------------- /src/Communication.Timers/ChannelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.Timers/ChannelFactory.cs -------------------------------------------------------------------------------- /src/Communication.Timers/Communication.Timers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.Timers/Communication.Timers.csproj -------------------------------------------------------------------------------- /src/Communication.Timers/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.Timers/Plugin.cs -------------------------------------------------------------------------------- /src/Communication.Timers/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.Timers/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Communication.Timers/PropertyCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.Timers/PropertyCommand.cs -------------------------------------------------------------------------------- /src/Communication.Timers/RelativeTimerChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.Timers/RelativeTimerChannel.cs -------------------------------------------------------------------------------- /src/Communication.Timers/SettingsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.Timers/SettingsForm.Designer.cs -------------------------------------------------------------------------------- /src/Communication.Timers/SettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.Timers/SettingsForm.cs -------------------------------------------------------------------------------- /src/Communication.Timers/SettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.Timers/SettingsForm.resx -------------------------------------------------------------------------------- /src/Communication.Timers/StringConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Communication.Timers/StringConstants.cs -------------------------------------------------------------------------------- /src/Designer/AppCompletionDatas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/AppCompletionDatas.cs -------------------------------------------------------------------------------- /src/Designer/BraceFoldingStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/BraceFoldingStrategy.cs -------------------------------------------------------------------------------- /src/Designer/CommandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/CommandManager.cs -------------------------------------------------------------------------------- /src/Designer/Designer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Designer.csproj -------------------------------------------------------------------------------- /src/Designer/DialogMessages.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/DialogMessages.Designer.cs -------------------------------------------------------------------------------- /src/Designer/DialogMessages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/DialogMessages.resx -------------------------------------------------------------------------------- /src/Designer/Dialogs/ProjectInfoDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Dialogs/ProjectInfoDialog.Designer.cs -------------------------------------------------------------------------------- /src/Designer/Dialogs/ProjectInfoDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Dialogs/ProjectInfoDialog.cs -------------------------------------------------------------------------------- /src/Designer/Dialogs/ProjectInfoDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Dialogs/ProjectInfoDialog.resx -------------------------------------------------------------------------------- /src/Designer/Dialogs/ProjectMediaDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Dialogs/ProjectMediaDialog.Designer.cs -------------------------------------------------------------------------------- /src/Designer/Dialogs/ProjectMediaDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Dialogs/ProjectMediaDialog.cs -------------------------------------------------------------------------------- /src/Designer/Dialogs/ProjectMediaDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Dialogs/ProjectMediaDialog.resx -------------------------------------------------------------------------------- /src/Designer/Dialogs/ReferanceForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Dialogs/ReferanceForm.Designer.cs -------------------------------------------------------------------------------- /src/Designer/Dialogs/ReferanceForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Dialogs/ReferanceForm.cs -------------------------------------------------------------------------------- /src/Designer/Dialogs/ReferanceForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Dialogs/ReferanceForm.resx -------------------------------------------------------------------------------- /src/Designer/Dialogs/RenameSchemaForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Dialogs/RenameSchemaForm.Designer.cs -------------------------------------------------------------------------------- /src/Designer/Dialogs/RenameSchemaForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Dialogs/RenameSchemaForm.cs -------------------------------------------------------------------------------- /src/Designer/Dialogs/RenameSchemaForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Dialogs/RenameSchemaForm.resx -------------------------------------------------------------------------------- /src/Designer/Dialogs/SaveDocumentsDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Dialogs/SaveDocumentsDialog.Designer.cs -------------------------------------------------------------------------------- /src/Designer/Dialogs/SaveDocumentsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Dialogs/SaveDocumentsDialog.cs -------------------------------------------------------------------------------- /src/Designer/Dialogs/SaveDocumentsDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Dialogs/SaveDocumentsDialog.resx -------------------------------------------------------------------------------- /src/Designer/Dialogs/StartForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Dialogs/StartForm.Designer.cs -------------------------------------------------------------------------------- /src/Designer/Dialogs/StartForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Dialogs/StartForm.cs -------------------------------------------------------------------------------- /src/Designer/Dialogs/StartForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Dialogs/StartForm.resx -------------------------------------------------------------------------------- /src/Designer/Dialogs/UserDLLDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Dialogs/UserDLLDialog.Designer.cs -------------------------------------------------------------------------------- /src/Designer/Dialogs/UserDLLDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Dialogs/UserDLLDialog.cs -------------------------------------------------------------------------------- /src/Designer/Dialogs/UserDLLDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Dialogs/UserDLLDialog.resx -------------------------------------------------------------------------------- /src/Designer/Dialogs/VariablesDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Dialogs/VariablesDialog.Designer.cs -------------------------------------------------------------------------------- /src/Designer/Dialogs/VariablesDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Dialogs/VariablesDialog.cs -------------------------------------------------------------------------------- /src/Designer/Dialogs/VariablesDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Dialogs/VariablesDialog.resx -------------------------------------------------------------------------------- /src/Designer/HelpCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/HelpCommands.cs -------------------------------------------------------------------------------- /src/Designer/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/MainForm.Designer.cs -------------------------------------------------------------------------------- /src/Designer/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/MainForm.cs -------------------------------------------------------------------------------- /src/Designer/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/MainForm.resx -------------------------------------------------------------------------------- /src/Designer/MainForm.zh-CHS.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/MainForm.zh-CHS.resx -------------------------------------------------------------------------------- /src/Designer/MyCompletionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/MyCompletionData.cs -------------------------------------------------------------------------------- /src/Designer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Program.cs -------------------------------------------------------------------------------- /src/Designer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Designer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Designer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Designer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/Designer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Properties/Settings.settings -------------------------------------------------------------------------------- /src/Designer/Resources/IronPython.syn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/IronPython.syn -------------------------------------------------------------------------------- /src/Designer/Resources/arrow_redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/arrow_redo.png -------------------------------------------------------------------------------- /src/Designer/Resources/arrow_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/arrow_undo.png -------------------------------------------------------------------------------- /src/Designer/Resources/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/checkmark.png -------------------------------------------------------------------------------- /src/Designer/Resources/cog_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/cog_edit.png -------------------------------------------------------------------------------- /src/Designer/Resources/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/colors.xml -------------------------------------------------------------------------------- /src/Designer/Resources/csharp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/csharp.ico -------------------------------------------------------------------------------- /src/Designer/Resources/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/cursor.png -------------------------------------------------------------------------------- /src/Designer/Resources/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/cut.png -------------------------------------------------------------------------------- /src/Designer/Resources/db_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/db_settings.png -------------------------------------------------------------------------------- /src/Designer/Resources/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/delete.png -------------------------------------------------------------------------------- /src/Designer/Resources/disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/disk.png -------------------------------------------------------------------------------- /src/Designer/Resources/disk_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/disk_edit.png -------------------------------------------------------------------------------- /src/Designer/Resources/log_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/log_error.png -------------------------------------------------------------------------------- /src/Designer/Resources/log_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/log_warning.png -------------------------------------------------------------------------------- /src/Designer/Resources/move_object_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/move_object_back.png -------------------------------------------------------------------------------- /src/Designer/Resources/move_object_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/move_object_front.png -------------------------------------------------------------------------------- /src/Designer/Resources/new_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/new_file.png -------------------------------------------------------------------------------- /src/Designer/Resources/open_events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/open_events.png -------------------------------------------------------------------------------- /src/Designer/Resources/open_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/open_file.png -------------------------------------------------------------------------------- /src/Designer/Resources/open_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/open_schema.png -------------------------------------------------------------------------------- /src/Designer/Resources/page_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/page_add.png -------------------------------------------------------------------------------- /src/Designer/Resources/page_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/page_copy.png -------------------------------------------------------------------------------- /src/Designer/Resources/page_white_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/page_white_add.png -------------------------------------------------------------------------------- /src/Designer/Resources/page_white_code_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/page_white_code_red.png -------------------------------------------------------------------------------- /src/Designer/Resources/paste_plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/paste_plain.png -------------------------------------------------------------------------------- /src/Designer/Resources/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/run.png -------------------------------------------------------------------------------- /src/Designer/Resources/save_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/save_file.png -------------------------------------------------------------------------------- /src/Designer/Resources/script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/script.png -------------------------------------------------------------------------------- /src/Designer/Resources/script_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/script_add.png -------------------------------------------------------------------------------- /src/Designer/Resources/script_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/script_remove.png -------------------------------------------------------------------------------- /src/Designer/Resources/shape_ellipse_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/shape_ellipse_add.png -------------------------------------------------------------------------------- /src/Designer/Resources/shape_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/shape_group.png -------------------------------------------------------------------------------- /src/Designer/Resources/shape_line_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/shape_line_add.png -------------------------------------------------------------------------------- /src/Designer/Resources/shape_square_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/shape_square_add.png -------------------------------------------------------------------------------- /src/Designer/Resources/shape_ungroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/shape_ungroup.png -------------------------------------------------------------------------------- /src/Designer/Resources/splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/splash.jpg -------------------------------------------------------------------------------- /src/Designer/Resources/svg2xaml.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/svg2xaml.xsl -------------------------------------------------------------------------------- /src/Designer/Resources/table_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/table_add.png -------------------------------------------------------------------------------- /src/Designer/Resources/textfield_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/textfield_add.png -------------------------------------------------------------------------------- /src/Designer/Resources/tree_archiver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/tree_archiver.png -------------------------------------------------------------------------------- /src/Designer/Resources/tree_channels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/tree_channels.png -------------------------------------------------------------------------------- /src/Designer/Resources/tree_plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/tree_plugin.png -------------------------------------------------------------------------------- /src/Designer/Resources/tree_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/tree_project.png -------------------------------------------------------------------------------- /src/Designer/Resources/tree_rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/tree_rule.png -------------------------------------------------------------------------------- /src/Designer/Resources/tree_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/tree_schema.png -------------------------------------------------------------------------------- /src/Designer/Resources/tree_schemas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/tree_schemas.png -------------------------------------------------------------------------------- /src/Designer/Resources/tree_script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/tree_script.png -------------------------------------------------------------------------------- /src/Designer/Resources/tree_scripts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/tree_scripts.png -------------------------------------------------------------------------------- /src/Designer/Resources/tree_variable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/tree_variable.png -------------------------------------------------------------------------------- /src/Designer/Resources/zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/zoom_in.png -------------------------------------------------------------------------------- /src/Designer/Resources/zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Resources/zoom_out.png -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/BindingSerializing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/BindingSerializing.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/EditorHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/EditorHelpers.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/GridManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/GridManager.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/Manipulators/ActionsEditManipulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/Manipulators/ActionsEditManipulator.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/Manipulators/BaseManipulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/Manipulators/BaseManipulator.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/Manipulators/Controlls/DragThumb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/Manipulators/Controlls/DragThumb.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/Manipulators/Controlls/PointDragThumb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/Manipulators/Controlls/PointDragThumb.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/Manipulators/Controlls/ResizeThumb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/Manipulators/Controlls/ResizeThumb.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/Manipulators/Controlls/RotateThumb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/Manipulators/Controlls/RotateThumb.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/Manipulators/Controlls/styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/Manipulators/Controlls/styles.xaml -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/Manipulators/DragResizeRotateManipulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/Manipulators/DragResizeRotateManipulator.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/Manipulators/GeometryHilightManipulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/Manipulators/GeometryHilightManipulator.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/Manipulators/PolylineEditManipulantor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/Manipulators/PolylineEditManipulantor.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/Manipulators/TextBoxManipulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/Manipulators/TextBoxManipulator.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/ObjectsFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/ObjectsFactory.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/BaseBindingPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/BaseBindingPanel.Designer.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/BaseBindingPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/BaseBindingPanel.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/BooleanBindingPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/BooleanBindingPanel.Designer.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/BooleanBindingPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/BooleanBindingPanel.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/BooleanBindingPanelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/BooleanBindingPanelFactory.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/CommonBindingDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/CommonBindingDialog.Designer.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/CommonBindingDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/CommonBindingDialog.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/CommonBindingDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/CommonBindingDialog.resx -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/ListViewEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/ListViewEx.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/MultiTextBindingPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/MultiTextBindingPanel.Designer.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/MultiTextBindingPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/MultiTextBindingPanel.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/MultiTextBindingPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/MultiTextBindingPanel.resx -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/MultiTextBindingPanelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/MultiTextBindingPanelFactory.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/MultiTextListViewEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/MultiTextListViewEx.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/NumExpressionBindingPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/NumExpressionBindingPanel.Designer.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/NumExpressionBindingPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/NumExpressionBindingPanel.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/NumExpressionBindingPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/NumExpressionBindingPanel.resx -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/NumericBindingPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/NumericBindingPanel.Designer.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/NumericBindingPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/NumericBindingPanel.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/NumericBindingPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/NumericBindingPanel.resx -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/PropProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/PropProxy.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/PropertiesMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/PropertiesMap.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/PropertyGridTypeEditors/ChannelSelectEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/PropertyGridTypeEditors/ChannelSelectEditor.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/PropertyGridTypeEditors/ColorEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/PropertyGridTypeEditors/ColorEditor.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/PropertyGridTypeEditors/ContentEditorDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/PropertyGridTypeEditors/ContentEditorDialog.Designer.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/PropertyGridTypeEditors/ContentEditorDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/PropertyGridTypeEditors/ContentEditorDialog.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/PropertyGridTypeEditors/ContentEditorDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/PropertyGridTypeEditors/ContentEditorDialog.resx -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/PropertyGridTypeEditors/ImageEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/PropertyGridTypeEditors/ImageEditor.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/PropertyGridTypeEditors/StyleEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/PropertyGridTypeEditors/StyleEditor.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/PropertyWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/PropertyWrapper.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/RangeBrushBindingPanelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/RangeBrushBindingPanelFactory.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/RangeListViewEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/RangeListViewEx.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/RangeSolidBrushBindingPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/RangeSolidBrushBindingPanel.Designer.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/RangeSolidBrushBindingPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/RangeSolidBrushBindingPanel.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/RangeSolidBrushBindingPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/RangeSolidBrushBindingPanel.resx -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/ScriptExpressionBindingFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/ScriptExpressionBindingFactory.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/ScriptExpressionBindingPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/ScriptExpressionBindingPanel.Designer.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/ScriptExpressionBindingPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/ScriptExpressionBindingPanel.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/ScriptExpressionBindingPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/ScriptExpressionBindingPanel.resx -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/SharpCodeDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/SharpCodeDialog.Designer.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/SharpCodeDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/SharpCodeDialog.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/SharpCodeDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/SharpCodeDialog.resx -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/SolidBrushBindingPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/SolidBrushBindingPanel.Designer.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/SolidBrushBindingPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/SolidBrushBindingPanel.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/SolidBrushBindingPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/SolidBrushBindingPanel.resx -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/StringBindingPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/StringBindingPanel.Designer.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/StringBindingPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/StringBindingPanel.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/StringBindingPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/StringBindingPanel.resx -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/PropertiesUtils/TypeConverters/DependencyObjectConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/PropertiesUtils/TypeConverters/DependencyObjectConverter.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/SchemaCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/SchemaCommands.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/SchemaMenuContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/SchemaMenuContext.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/SelectionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/SelectionManager.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/StylesLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/StylesLibrary.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/ToolDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/ToolDescriptor.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/Tools/ActionEditTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/Tools/ActionEditTool.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/Tools/BaseTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/Tools/BaseTool.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/Tools/ControlCreateTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/Tools/ControlCreateTool.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/Tools/DrawTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/Tools/DrawTool.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/Tools/EllipseTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/Tools/EllipseTool.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/Tools/HelperSelectorTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/Tools/HelperSelectorTool.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/Tools/PolylineTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/Tools/PolylineTool.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/Tools/RectangleTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/Tools/RectangleTool.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/Tools/SelectionTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/Tools/SelectionTool.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/Tools/TextBoxTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/Tools/TextBoxTool.cs -------------------------------------------------------------------------------- /src/Designer/SchemaEditor/UndoRedo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/SchemaEditor/UndoRedo.cs -------------------------------------------------------------------------------- /src/Designer/StringResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/StringResources.Designer.cs -------------------------------------------------------------------------------- /src/Designer/StringResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/StringResources.resx -------------------------------------------------------------------------------- /src/Designer/Views/ArchiverSettingsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Views/ArchiverSettingsView.cs -------------------------------------------------------------------------------- /src/Designer/Views/ArchiverSettingsView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Views/ArchiverSettingsView.resx -------------------------------------------------------------------------------- /src/Designer/Views/DocumentView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Views/DocumentView.cs -------------------------------------------------------------------------------- /src/Designer/Views/EventWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Views/EventWrapper.cs -------------------------------------------------------------------------------- /src/Designer/Views/EventsTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Views/EventsTab.cs -------------------------------------------------------------------------------- /src/Designer/Views/EventsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Views/EventsView.cs -------------------------------------------------------------------------------- /src/Designer/Views/NodeRename.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Views/NodeRename.cs -------------------------------------------------------------------------------- /src/Designer/Views/ProjectContentView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Views/ProjectContentView.cs -------------------------------------------------------------------------------- /src/Designer/Views/ProjectContentView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Views/ProjectContentView.resx -------------------------------------------------------------------------------- /src/Designer/Views/ProjectNodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Views/ProjectNodes.cs -------------------------------------------------------------------------------- /src/Designer/Views/PropertyBrowserView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Views/PropertyBrowserView.cs -------------------------------------------------------------------------------- /src/Designer/Views/SchemaView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Views/SchemaView.cs -------------------------------------------------------------------------------- /src/Designer/Views/ScriptView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Views/ScriptView.cs -------------------------------------------------------------------------------- /src/Designer/Views/ScriptView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Views/ScriptView.resx -------------------------------------------------------------------------------- /src/Designer/Views/SharpCodeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Views/SharpCodeView.cs -------------------------------------------------------------------------------- /src/Designer/Views/SharpCodeView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Views/SharpCodeView.resx -------------------------------------------------------------------------------- /src/Designer/Views/ToolBoxView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Views/ToolBoxView.cs -------------------------------------------------------------------------------- /src/Designer/Views/ToolWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Views/ToolWindow.cs -------------------------------------------------------------------------------- /src/Designer/Views/VariablesView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Views/VariablesView.cs -------------------------------------------------------------------------------- /src/Designer/Views/VariablesView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/Views/VariablesView.resx -------------------------------------------------------------------------------- /src/Designer/WindowManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/WindowManager.cs -------------------------------------------------------------------------------- /src/Designer/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Designer/app.config -------------------------------------------------------------------------------- /src/RunTime/CommandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/CommandManager.cs -------------------------------------------------------------------------------- /src/RunTime/DialogMessages.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/DialogMessages.Designer.cs -------------------------------------------------------------------------------- /src/RunTime/DialogMessages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/DialogMessages.resx -------------------------------------------------------------------------------- /src/RunTime/DocumentCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/DocumentCommands.cs -------------------------------------------------------------------------------- /src/RunTime/MDIClientSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/MDIClientSupport.cs -------------------------------------------------------------------------------- /src/RunTime/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/MainForm.Designer.cs -------------------------------------------------------------------------------- /src/RunTime/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/MainForm.cs -------------------------------------------------------------------------------- /src/RunTime/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/MainForm.resx -------------------------------------------------------------------------------- /src/RunTime/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/Program.cs -------------------------------------------------------------------------------- /src/RunTime/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/RunTime/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/RunTime/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/Properties/Resources.resx -------------------------------------------------------------------------------- /src/RunTime/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/RunTime/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/Properties/Settings.settings -------------------------------------------------------------------------------- /src/RunTime/Resources/db_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/Resources/db_table.png -------------------------------------------------------------------------------- /src/RunTime/Resources/log_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/Resources/log_error.png -------------------------------------------------------------------------------- /src/RunTime/Resources/log_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/Resources/log_info.png -------------------------------------------------------------------------------- /src/RunTime/Resources/log_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/Resources/log_warning.png -------------------------------------------------------------------------------- /src/RunTime/Resources/open_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/Resources/open_file.png -------------------------------------------------------------------------------- /src/RunTime/Resources/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/Resources/refresh.png -------------------------------------------------------------------------------- /src/RunTime/Resources/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/Resources/run.png -------------------------------------------------------------------------------- /src/RunTime/Resources/splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/Resources/splash.jpg -------------------------------------------------------------------------------- /src/RunTime/Resources/splash1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/Resources/splash1.jpg -------------------------------------------------------------------------------- /src/RunTime/Resources/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/Resources/stop.png -------------------------------------------------------------------------------- /src/RunTime/Resources/zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/Resources/zoom_in.png -------------------------------------------------------------------------------- /src/RunTime/Resources/zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/Resources/zoom_out.png -------------------------------------------------------------------------------- /src/RunTime/RunTime.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/RunTime.csproj -------------------------------------------------------------------------------- /src/RunTime/StartForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/StartForm.Designer.cs -------------------------------------------------------------------------------- /src/RunTime/StartForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/StartForm.cs -------------------------------------------------------------------------------- /src/RunTime/StartForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/StartForm.resx -------------------------------------------------------------------------------- /src/RunTime/StringResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/StringResources.Designer.cs -------------------------------------------------------------------------------- /src/RunTime/StringResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/StringResources.resx -------------------------------------------------------------------------------- /src/RunTime/Views/ArchiverGraphView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/Views/ArchiverGraphView.cs -------------------------------------------------------------------------------- /src/RunTime/Views/ArchiverGraphView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/Views/ArchiverGraphView.resx -------------------------------------------------------------------------------- /src/RunTime/Views/ArchiverTableView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/Views/ArchiverTableView.cs -------------------------------------------------------------------------------- /src/RunTime/Views/ArchiverTableView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/Views/ArchiverTableView.resx -------------------------------------------------------------------------------- /src/RunTime/Views/DocumentView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/Views/DocumentView.cs -------------------------------------------------------------------------------- /src/RunTime/Views/LogConsoleView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/Views/LogConsoleView.cs -------------------------------------------------------------------------------- /src/RunTime/Views/LogConsoleView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/Views/LogConsoleView.resx -------------------------------------------------------------------------------- /src/RunTime/Views/ProjectContentView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/Views/ProjectContentView.cs -------------------------------------------------------------------------------- /src/RunTime/Views/ProjectContentView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/Views/ProjectContentView.resx -------------------------------------------------------------------------------- /src/RunTime/Views/QueryView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/Views/QueryView.cs -------------------------------------------------------------------------------- /src/RunTime/Views/QueryView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/Views/QueryView.resx -------------------------------------------------------------------------------- /src/RunTime/Views/SchemaView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/Views/SchemaView.cs -------------------------------------------------------------------------------- /src/RunTime/Views/SchemaView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/Views/SchemaView.resx -------------------------------------------------------------------------------- /src/RunTime/Views/VariablesView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/Views/VariablesView.cs -------------------------------------------------------------------------------- /src/RunTime/Views/VariablesView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/Views/VariablesView.resx -------------------------------------------------------------------------------- /src/RunTime/WindowManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/WindowManager.cs -------------------------------------------------------------------------------- /src/RunTime/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/RunTime/app.config -------------------------------------------------------------------------------- /src/Samples/BigCheckCheckBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/BigCheckCheckBox.xaml -------------------------------------------------------------------------------- /src/Samples/BindingExample.fs2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/BindingExample.fs2 -------------------------------------------------------------------------------- /src/Samples/Chart.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/Chart.xaml -------------------------------------------------------------------------------- /src/Samples/CoffeeMachine.fs2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/CoffeeMachine.fs2 -------------------------------------------------------------------------------- /src/Samples/Example.fs2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/Example.fs2 -------------------------------------------------------------------------------- /src/Samples/ImagesExample.fs2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/ImagesExample.fs2 -------------------------------------------------------------------------------- /src/Samples/MoveRotate.fs2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/MoveRotate.fs2 -------------------------------------------------------------------------------- /src/Samples/Styles/3DSlider.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/Styles/3DSlider.xaml -------------------------------------------------------------------------------- /src/Samples/Styles/BigChecBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/Styles/BigChecBox.xaml -------------------------------------------------------------------------------- /src/Samples/Styles/GuegeTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/Styles/GuegeTemplate.xaml -------------------------------------------------------------------------------- /src/Samples/Styles/SpringScroll.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/Styles/SpringScroll.xaml -------------------------------------------------------------------------------- /src/Samples/Styles/nofrillsScroll.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/Styles/nofrillsScroll.xaml -------------------------------------------------------------------------------- /src/Samples/Styles/textVal.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/Styles/textVal.xaml -------------------------------------------------------------------------------- /src/Samples/Styles/thermotemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/Styles/thermotemplate.xaml -------------------------------------------------------------------------------- /src/Samples/Swordfish.WPF.Charts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/Swordfish.WPF.Charts.dll -------------------------------------------------------------------------------- /src/Samples/TermalControl.fs2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/TermalControl.fs2 -------------------------------------------------------------------------------- /src/Samples/analogValue.fs2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/analogValue.fs2 -------------------------------------------------------------------------------- /src/Samples/bouncing_ball.fs2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/bouncing_ball.fs2 -------------------------------------------------------------------------------- /src/Samples/chart.fs2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/chart.fs2 -------------------------------------------------------------------------------- /src/Samples/chart_sample/Swordfish.WPF.Charts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/chart_sample/Swordfish.WPF.Charts.dll -------------------------------------------------------------------------------- /src/Samples/chart_sample/project.fs2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/chart_sample/project.fs2 -------------------------------------------------------------------------------- /src/Samples/checkboxTest.fs2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/checkboxTest.fs2 -------------------------------------------------------------------------------- /src/Samples/clinton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/clinton.svg -------------------------------------------------------------------------------- /src/Samples/hongzhi1.fs2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/hongzhi1.fs2 -------------------------------------------------------------------------------- /src/Samples/hongzhi2.fs2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/hongzhi2.fs2 -------------------------------------------------------------------------------- /src/Samples/lion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/lion.svg -------------------------------------------------------------------------------- /src/Samples/modbus.fs2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/modbus.fs2 -------------------------------------------------------------------------------- /src/Samples/modbus_test_conversion.fs2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/modbus_test_conversion.fs2 -------------------------------------------------------------------------------- /src/Samples/picasso.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/picasso.svg -------------------------------------------------------------------------------- /src/Samples/simple_script_1.fs2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/simple_script_1.fs2 -------------------------------------------------------------------------------- /src/Samples/simple_script_2.fs2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/simple_script_2.fs2 -------------------------------------------------------------------------------- /src/Samples/simple_script_3.fs2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/simple_script_3.fs2 -------------------------------------------------------------------------------- /src/Samples/simple_script_4.fs2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/simple_script_4.fs2 -------------------------------------------------------------------------------- /src/Samples/simple_script_5 (open schema).fs2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/simple_script_5 (open schema).fs2 -------------------------------------------------------------------------------- /src/Samples/tank.fs2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/tank.fs2 -------------------------------------------------------------------------------- /src/Samples/test.fs2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/test.fs2 -------------------------------------------------------------------------------- /src/Samples/test1.fs2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/test1.fs2 -------------------------------------------------------------------------------- /src/Samples/tiger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/tiger.svg -------------------------------------------------------------------------------- /src/Samples/timertest.fs2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/timertest.fs2 -------------------------------------------------------------------------------- /src/Samples/water.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/Samples/water.svg -------------------------------------------------------------------------------- /src/ScadaHMI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/ScadaHMI.sln -------------------------------------------------------------------------------- /src/VisualControls.FS2EasyControls/AnalogTextValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/VisualControls.FS2EasyControls/AnalogTextValue.cs -------------------------------------------------------------------------------- /src/VisualControls.FS2EasyControls/AnalogTextValueWrappers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/VisualControls.FS2EasyControls/AnalogTextValueWrappers.cs -------------------------------------------------------------------------------- /src/VisualControls.FS2EasyControls/BinaryColorText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/VisualControls.FS2EasyControls/BinaryColorText.cs -------------------------------------------------------------------------------- /src/VisualControls.FS2EasyControls/BinaryColorTextWrappers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/VisualControls.FS2EasyControls/BinaryColorTextWrappers.cs -------------------------------------------------------------------------------- /src/VisualControls.FS2EasyControls/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/VisualControls.FS2EasyControls/Plugin.cs -------------------------------------------------------------------------------- /src/VisualControls.FS2EasyControls/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/VisualControls.FS2EasyControls/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/VisualControls.FS2EasyControls/PropertyCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/VisualControls.FS2EasyControls/PropertyCommand.cs -------------------------------------------------------------------------------- /src/VisualControls.FS2EasyControls/StringConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/VisualControls.FS2EasyControls/StringConstants.cs -------------------------------------------------------------------------------- /src/VisualControls.FS2EasyControls/VisualControls.FS2EasyControls.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/VisualControls.FS2EasyControls/VisualControls.FS2EasyControls.csproj -------------------------------------------------------------------------------- /src/design/csharp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/design/csharp.ico -------------------------------------------------------------------------------- /src/design/csharp.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/design/csharp.psd -------------------------------------------------------------------------------- /src/design/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/design/logo.ico -------------------------------------------------------------------------------- /src/design/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/design/logo.jpg -------------------------------------------------------------------------------- /src/design/scada-cyber-security.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/design/scada-cyber-security.jpg -------------------------------------------------------------------------------- /src/design/scada-full-graphic-display.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/design/scada-full-graphic-display.jpg -------------------------------------------------------------------------------- /src/design/splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/design/splash.jpg -------------------------------------------------------------------------------- /src/design/splash1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/design/splash1.jpg -------------------------------------------------------------------------------- /src/design/tree_script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/design/tree_script.png -------------------------------------------------------------------------------- /src/images/db_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/images/db_settings.png -------------------------------------------------------------------------------- /src/images/db_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/images/db_table.png -------------------------------------------------------------------------------- /src/images/log_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/images/log_error.png -------------------------------------------------------------------------------- /src/images/log_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/images/log_info.png -------------------------------------------------------------------------------- /src/images/log_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/images/log_warning.png -------------------------------------------------------------------------------- /src/images/move_object_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/images/move_object_back.png -------------------------------------------------------------------------------- /src/images/move_object_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/images/move_object_front.png -------------------------------------------------------------------------------- /src/images/new_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/images/new_file.png -------------------------------------------------------------------------------- /src/images/open_events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/images/open_events.png -------------------------------------------------------------------------------- /src/images/open_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/images/open_file.png -------------------------------------------------------------------------------- /src/images/open_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/images/open_schema.png -------------------------------------------------------------------------------- /src/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/images/refresh.png -------------------------------------------------------------------------------- /src/images/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/images/run.png -------------------------------------------------------------------------------- /src/images/save_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/images/save_file.png -------------------------------------------------------------------------------- /src/images/script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/images/script.png -------------------------------------------------------------------------------- /src/images/script_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/images/script_add.png -------------------------------------------------------------------------------- /src/images/script_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/images/script_remove.png -------------------------------------------------------------------------------- /src/images/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/images/stop.png -------------------------------------------------------------------------------- /src/images/tree_archiver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/images/tree_archiver.png -------------------------------------------------------------------------------- /src/images/tree_channels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/images/tree_channels.png -------------------------------------------------------------------------------- /src/images/tree_plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/images/tree_plugin.png -------------------------------------------------------------------------------- /src/images/tree_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/images/tree_project.png -------------------------------------------------------------------------------- /src/images/tree_rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/images/tree_rule.png -------------------------------------------------------------------------------- /src/images/tree_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/images/tree_schema.png -------------------------------------------------------------------------------- /src/images/tree_schemas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/images/tree_schemas.png -------------------------------------------------------------------------------- /src/images/tree_script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/images/tree_script.png -------------------------------------------------------------------------------- /src/images/tree_scripts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/images/tree_scripts.png -------------------------------------------------------------------------------- /src/images/tree_variable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/images/tree_variable.png -------------------------------------------------------------------------------- /src/images/zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/images/zoom_in.png -------------------------------------------------------------------------------- /src/images/zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghongzhi1234/SCADA-HMI/HEAD/src/images/zoom_out.png --------------------------------------------------------------------------------