├── .gitattributes ├── .gitignore ├── HslControlsApp ├── Activity_HslBagFilter.cs ├── Activity_HslBarChart.cs ├── Activity_HslBattery.cs ├── Activity_HslBottle.cs ├── Activity_HslClassifier.cs ├── Activity_HslCncCenter.cs ├── Activity_HslConveyer.cs ├── Activity_HslCoolFan.cs ├── Activity_HslCurve.cs ├── Activity_HslDialPlate.cs ├── Activity_HslGanttChart.cs ├── Activity_HslGauge.cs ├── Activity_HslLanternSimple.cs ├── Activity_HslLedDisplay.cs ├── Activity_HslMachineCenter.cs ├── Activity_HslMotor.cs ├── Activity_HslMoveText.cs ├── Activity_HslPieChart.cs ├── Activity_HslPipeLine.cs ├── Activity_HslProgress.cs ├── Activity_HslPumpOne.cs ├── Activity_HslSignature.cs ├── Activity_HslStatusManagement.cs ├── Activity_HslThermometer.cs ├── Activity_HslVacuumPump.cs ├── Activity_HslValves.cs ├── Activity_HslWaterBox.cs ├── Assets │ └── AboutAssets.txt ├── HslControlsApp.csproj ├── MainActivity.cs ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs └── Resources │ ├── AboutResources.txt │ ├── Resource.designer.cs │ ├── drawable-v21 │ ├── ic_menu_camera.xml │ ├── ic_menu_gallery.xml │ ├── ic_menu_manage.xml │ ├── ic_menu_send.xml │ ├── ic_menu_share.xml │ └── ic_menu_slideshow.xml │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ └── side_nav_bar.xml │ ├── layout │ ├── activity_main.axml │ ├── activity_main.xml │ ├── app_bar_main.axml │ ├── app_bar_main.xml │ ├── content_main.axml │ ├── content_main.xml │ ├── layout_HslBagFilter.xml │ ├── layout_HslBarChart.axml │ ├── layout_HslBattery.axml │ ├── layout_HslBottle.axml │ ├── layout_HslClassifier.axml │ ├── layout_HslCncCenter.axml │ ├── layout_HslConveyer.axml │ ├── layout_HslCoolFan.xml │ ├── layout_HslCurve.axml │ ├── layout_HslCurve.xml │ ├── layout_HslDialPlate.xml │ ├── layout_HslGanttChart.axml │ ├── layout_HslGauge.axml │ ├── layout_HslLanternSimple.axml │ ├── layout_HslLedDisplay.axml │ ├── layout_HslMachineCenter.axml │ ├── layout_HslMotor.axml │ ├── layout_HslMoveText.xml │ ├── layout_HslPieChart.axml │ ├── layout_HslPipeLine.axml │ ├── layout_HslProgress.axml │ ├── layout_HslPumpOne.axml │ ├── layout_HslSignature.xml │ ├── layout_HslStatusManagement.axml │ ├── layout_HslThermometer.axml │ ├── layout_HslVacuumPump.xml │ ├── layout_HslValves.axml │ ├── layout_HslWaterBox.axml │ ├── nav_header_main.axml │ └── nav_header_main.xml │ ├── menu │ ├── activity_main_drawer.xml │ └── menu_main.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── values-v21 │ └── styles.xml │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── drawables.xml │ ├── ic_launcher_background.xml │ ├── strings.xml │ └── styles.xml ├── HslControlsDemo.sln ├── HslControlsDemo ├── App.config ├── FormBarChart.Designer.cs ├── FormBarChart.cs ├── FormBarChart.resx ├── FormBarChartHorizon.Designer.cs ├── FormBarChartHorizon.cs ├── FormBarChartHorizon.resx ├── FormBasic.Designer.cs ├── FormBasic.cs ├── FormBasic.resx ├── FormBattery.Designer.cs ├── FormBattery.cs ├── FormBattery.resx ├── FormBlower.Designer.cs ├── FormBlower.cs ├── FormBlower.resx ├── FormBottle.Designer.cs ├── FormBottle.cs ├── FormBottle.resx ├── FormCharge.Designer.cs ├── FormCharge.cs ├── FormCharge.resx ├── FormChart.cs ├── FormChart.designer.cs ├── FormChart.resx ├── FormClassifier.Designer.cs ├── FormClassifier.cs ├── FormClassifier.resx ├── FormClock.Designer.cs ├── FormClock.cs ├── FormClock.resx ├── FormCncCenter.Designer.cs ├── FormCncCenter.cs ├── FormCncCenter.resx ├── FormContent.cs ├── FormConveryer.Designer.cs ├── FormConveryer.cs ├── FormConveryer.resx ├── FormConveyerRollers.Designer.cs ├── FormConveyerRollers.cs ├── FormConveyerRollers.resx ├── FormCurve.Designer.cs ├── FormCurve.cs ├── FormCurve.resx ├── FormCurve2.Designer.cs ├── FormCurve2.cs ├── FormCurve2.resx ├── FormCurve3.Designer.cs ├── FormCurve3.cs ├── FormCurve3.resx ├── FormCurveHistory.Designer.cs ├── FormCurveHistory.cs ├── FormCurveHistory.resx ├── FormCurveHistory10.Designer.cs ├── FormCurveHistory10.cs ├── FormCurveHistory10.resx ├── FormCurveHistory11.Designer.cs ├── FormCurveHistory11.cs ├── FormCurveHistory11.resx ├── FormCurveHistory12.Designer.cs ├── FormCurveHistory12.cs ├── FormCurveHistory12.resx ├── FormCurveHistory2.Designer.cs ├── FormCurveHistory2.cs ├── FormCurveHistory2.resx ├── FormCurveHistory3.Designer.cs ├── FormCurveHistory3.cs ├── FormCurveHistory3.resx ├── FormCurveHistory4.Designer.cs ├── FormCurveHistory4.cs ├── FormCurveHistory4.resx ├── FormCurveHistory5.Designer.cs ├── FormCurveHistory5.cs ├── FormCurveHistory5.resx ├── FormCurveHistory6.Designer.cs ├── FormCurveHistory6.cs ├── FormCurveHistory6.resx ├── FormCurveHistory7.Designer.cs ├── FormCurveHistory7.cs ├── FormCurveHistory7.resx ├── FormCurveHistory8.Designer.cs ├── FormCurveHistory8.cs ├── FormCurveHistory8.resx ├── FormCurveHistory9.Designer.cs ├── FormCurveHistory9.cs ├── FormCurveHistory9.resx ├── FormDeclaration.Designer.cs ├── FormDeclaration.cs ├── FormDeclaration.resx ├── FormDigitalInput.Designer.cs ├── FormDigitalInput.cs ├── FormDigitalInput.resx ├── FormFactory.Designer.cs ├── FormFactory.cs ├── FormFactory.resx ├── FormGanttDay.Designer.cs ├── FormGanttDay.cs ├── FormGanttDay.resx ├── FormGauge.Designer.cs ├── FormGauge.cs ├── FormGauge.resx ├── FormGaugeChart.Designer.cs ├── FormGaugeChart.cs ├── FormGaugeChart.resx ├── FormGobang.Designer.cs ├── FormGobang.cs ├── FormGobang.resx ├── FormHMILedSingle.Designer.cs ├── FormHMILedSingle.cs ├── FormHMILedSingle.resx ├── FormHslBagFilter.Designer.cs ├── FormHslBagFilter.cs ├── FormHslBagFilter.resx ├── FormHslChinaMap.Designer.cs ├── FormHslChinaMap.cs ├── FormHslChinaMap.resx ├── FormHslChinaMap2.Designer.cs ├── FormHslChinaMap2.cs ├── FormHslChinaMap2.resx ├── FormHslChinaMap3.Designer.cs ├── FormHslChinaMap3.cs ├── FormHslChinaMap3.resx ├── FormHslCoolFan.Designer.cs ├── FormHslCoolFan.cs ├── FormHslCoolFan.resx ├── FormHslDialPlate.Designer.cs ├── FormHslDialPlate.cs ├── FormHslDialPlate.resx ├── FormHslLabelCombo.Designer.cs ├── FormHslLabelCombo.cs ├── FormHslLabelCombo.resx ├── FormHslTable.Designer.cs ├── FormHslTable.cs ├── FormHslTable.resx ├── FormHslTable2.Designer.cs ├── FormHslTable2.cs ├── FormHslTable2.resx ├── FormHslTitle.Designer.cs ├── FormHslTitle.cs ├── FormHslTitle.resx ├── FormHslTruck.Designer.cs ├── FormHslTruck.cs ├── FormHslTruck.resx ├── FormLanternSimple.Designer.cs ├── FormLanternSimple.cs ├── FormLanternSimple.resx ├── FormLedDisplay.Designer.cs ├── FormLedDisplay.cs ├── FormLedDisplay.resx ├── FormLoad.Designer.cs ├── FormLoad.cs ├── FormLoad.resx ├── FormMachineCenter.Designer.cs ├── FormMachineCenter.cs ├── FormMachineCenter.resx ├── FormMainWindow.Designer.cs ├── FormMainWindow.cs ├── FormMainWindow.resx ├── FormMotor.Designer.cs ├── FormMotor.cs ├── FormMotor.resx ├── FormMoveText.Designer.cs ├── FormMoveText.cs ├── FormMoveText.resx ├── FormNoBoundaryControl.Designer.cs ├── FormNoBoundaryControl.cs ├── FormNoBoundaryControl.resx ├── FormPanel.Designer.cs ├── FormPanel.cs ├── FormPanel.resx ├── FormPanelBack.Designer.cs ├── FormPanelBack.cs ├── FormPanelBack.resx ├── FormPieChart.Designer.cs ├── FormPieChart.cs ├── FormPieChart.resx ├── FormPipeLine.Designer.cs ├── FormPipeLine.cs ├── FormPipeLine.resx ├── FormPipeLineTest.Designer.cs ├── FormPipeLineTest.cs ├── FormPipeLineTest.resx ├── FormPipeLineThree.Designer.cs ├── FormPipeLineThree.cs ├── FormPipeLineThree.resx ├── FormProgress.Designer.cs ├── FormProgress.cs ├── FormProgress.resx ├── FormProgressBar.Designer.cs ├── FormProgressBar.cs ├── FormProgressBar.resx ├── FormProgressColorful.Designer.cs ├── FormProgressColorful.cs ├── FormProgressColorful.resx ├── FormPropertySetting.Designer.cs ├── FormPropertySetting.cs ├── FormPropertySetting.resx ├── FormPumpOne.Designer.cs ├── FormPumpOne.cs ├── FormPumpOne.resx ├── FormSignature.Designer.cs ├── FormSignature.cs ├── FormSignature.resx ├── FormStatus.Designer.cs ├── FormStatus.cs ├── FormStatus.resx ├── FormTank.Designer.cs ├── FormTank.cs ├── FormTank.resx ├── FormTetris.Designer.cs ├── FormTetris.cs ├── FormTetris.resx ├── FormTetris2.Designer.cs ├── FormTetris2.cs ├── FormTetris2.resx ├── FormThermometer.Designer.cs ├── FormThermometer.cs ├── FormThermometer.resx ├── FormVacuumPump.Designer.cs ├── FormVacuumPump.cs ├── FormVacuumPump.resx ├── FormValves.Designer.cs ├── FormValves.cs ├── FormValves.resx ├── FormWaterBox.Designer.cs ├── FormWaterBox.cs ├── FormWaterBox.resx ├── HslControlsDemo.csproj ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Scattered T-Storms.png ├── car.gif ├── hslcontrols.ico ├── packages.config ├── plane.png ├── weatherRain.png ├── weatherSun.png └── weipay.png ├── HslControlsWpf ├── App.config ├── App.xaml ├── App.xaml.cs ├── HslControlsWpf.csproj ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── WindowHslArcGauge.xaml ├── WindowHslArcGauge.xaml.cs ├── WindowHslArrow.xaml ├── WindowHslArrow.xaml.cs ├── WindowHslBagFilter.xaml ├── WindowHslBagFilter.xaml.cs ├── WindowHslBarChart.xaml ├── WindowHslBarChart.xaml.cs ├── WindowHslBattery.xaml ├── WindowHslBattery.xaml.cs ├── WindowHslBottle.xaml ├── WindowHslBottle.xaml.cs ├── WindowHslCircularGauge.xaml ├── WindowHslCircularGauge.xaml.cs ├── WindowHslClassifier.xaml ├── WindowHslClassifier.xaml.cs ├── WindowHslCncCenter.xaml ├── WindowHslCncCenter.xaml.cs ├── WindowHslCoolFan.xaml ├── WindowHslCoolFan.xaml.cs ├── WindowHslCurve.xaml ├── WindowHslCurve.xaml.cs ├── WindowHslCurveHistory.xaml ├── WindowHslCurveHistory.xaml.cs ├── WindowHslGanttChart.xaml ├── WindowHslGanttChart.xaml.cs ├── WindowHslHandValve.xaml ├── WindowHslHandValve.xaml.cs ├── WindowHslLanternSimple.xaml ├── WindowHslLanternSimple.xaml.cs ├── WindowHslMachineCenter.xaml ├── WindowHslMachineCenter.xaml.cs ├── WindowHslMotorTwo.xaml ├── WindowHslMotorTwo.xaml.cs ├── WindowHslMoveText.xaml ├── WindowHslMoveText.xaml.cs ├── WindowHslPipeLine.xaml ├── WindowHslPipeLine.xaml.cs ├── WindowHslPumpOne.xaml ├── WindowHslPumpOne.xaml.cs ├── WindowHslSignature.xaml ├── WindowHslSignature.xaml.cs ├── WindowHslStatusManagement.xaml ├── WindowHslStatusManagement.xaml.cs ├── WindowHslThermometer.xaml ├── WindowHslThermometer.xaml.cs ├── WindowHslTitle.xaml ├── WindowHslTitle.xaml.cs ├── WindowHslVacuumPump.xaml ├── WindowHslVacuumPump.xaml.cs ├── WindowHslWaterBasin.xaml ├── WindowHslWaterBasin.xaml.cs ├── WindowHslWaterBox.xaml ├── WindowHslWaterBox.xaml.cs ├── WindowHslWaterPump.xaml ├── WindowHslWaterPump.xaml.cs ├── WindowSevenSegments.xaml ├── WindowSevenSegments.xaml.cs ├── WindowSizeTest.xaml ├── WindowSizeTest.xaml.cs ├── hsl_logo.jpg ├── packages.config └── windowsLogo.png ├── LICENSE ├── ReadMe.md ├── download └── HslControlsDemo.zip └── img ├── 1.png ├── 100.png ├── 1000.gif ├── 101.png ├── 102.png ├── 103.png ├── 104.png ├── 105.png ├── 106.png ├── 107.png ├── 108.png ├── 109.png ├── 110.png ├── 111.png ├── 112.png ├── 113.png ├── 114.png ├── 115.png ├── 116.png ├── 117.png ├── 118.png ├── 119.png ├── 120.png ├── 121.png ├── 122.png ├── 123.png ├── 124.png ├── 125.png ├── 126.png ├── 127.png ├── 128.png ├── 129.png ├── 130.png ├── 2.png ├── 200.png ├── 201.png ├── 202.png ├── 300.png ├── 301.png ├── 302.png └── 303.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /HslControlsApp/Activity_HslBagFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Activity_HslBagFilter.cs -------------------------------------------------------------------------------- /HslControlsApp/Activity_HslBarChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Activity_HslBarChart.cs -------------------------------------------------------------------------------- /HslControlsApp/Activity_HslBattery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Activity_HslBattery.cs -------------------------------------------------------------------------------- /HslControlsApp/Activity_HslBottle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Activity_HslBottle.cs -------------------------------------------------------------------------------- /HslControlsApp/Activity_HslClassifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Activity_HslClassifier.cs -------------------------------------------------------------------------------- /HslControlsApp/Activity_HslCncCenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Activity_HslCncCenter.cs -------------------------------------------------------------------------------- /HslControlsApp/Activity_HslConveyer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Activity_HslConveyer.cs -------------------------------------------------------------------------------- /HslControlsApp/Activity_HslCoolFan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Activity_HslCoolFan.cs -------------------------------------------------------------------------------- /HslControlsApp/Activity_HslCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Activity_HslCurve.cs -------------------------------------------------------------------------------- /HslControlsApp/Activity_HslDialPlate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Activity_HslDialPlate.cs -------------------------------------------------------------------------------- /HslControlsApp/Activity_HslGanttChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Activity_HslGanttChart.cs -------------------------------------------------------------------------------- /HslControlsApp/Activity_HslGauge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Activity_HslGauge.cs -------------------------------------------------------------------------------- /HslControlsApp/Activity_HslLanternSimple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Activity_HslLanternSimple.cs -------------------------------------------------------------------------------- /HslControlsApp/Activity_HslLedDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Activity_HslLedDisplay.cs -------------------------------------------------------------------------------- /HslControlsApp/Activity_HslMachineCenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Activity_HslMachineCenter.cs -------------------------------------------------------------------------------- /HslControlsApp/Activity_HslMotor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Activity_HslMotor.cs -------------------------------------------------------------------------------- /HslControlsApp/Activity_HslMoveText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Activity_HslMoveText.cs -------------------------------------------------------------------------------- /HslControlsApp/Activity_HslPieChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Activity_HslPieChart.cs -------------------------------------------------------------------------------- /HslControlsApp/Activity_HslPipeLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Activity_HslPipeLine.cs -------------------------------------------------------------------------------- /HslControlsApp/Activity_HslProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Activity_HslProgress.cs -------------------------------------------------------------------------------- /HslControlsApp/Activity_HslPumpOne.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Activity_HslPumpOne.cs -------------------------------------------------------------------------------- /HslControlsApp/Activity_HslSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Activity_HslSignature.cs -------------------------------------------------------------------------------- /HslControlsApp/Activity_HslStatusManagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Activity_HslStatusManagement.cs -------------------------------------------------------------------------------- /HslControlsApp/Activity_HslThermometer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Activity_HslThermometer.cs -------------------------------------------------------------------------------- /HslControlsApp/Activity_HslVacuumPump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Activity_HslVacuumPump.cs -------------------------------------------------------------------------------- /HslControlsApp/Activity_HslValves.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Activity_HslValves.cs -------------------------------------------------------------------------------- /HslControlsApp/Activity_HslWaterBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Activity_HslWaterBox.cs -------------------------------------------------------------------------------- /HslControlsApp/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /HslControlsApp/HslControlsApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/HslControlsApp.csproj -------------------------------------------------------------------------------- /HslControlsApp/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/MainActivity.cs -------------------------------------------------------------------------------- /HslControlsApp/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /HslControlsApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HslControlsApp/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/AboutResources.txt -------------------------------------------------------------------------------- /HslControlsApp/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /HslControlsApp/Resources/drawable-v21/ic_menu_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/drawable-v21/ic_menu_camera.xml -------------------------------------------------------------------------------- /HslControlsApp/Resources/drawable-v21/ic_menu_gallery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/drawable-v21/ic_menu_gallery.xml -------------------------------------------------------------------------------- /HslControlsApp/Resources/drawable-v21/ic_menu_manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/drawable-v21/ic_menu_manage.xml -------------------------------------------------------------------------------- /HslControlsApp/Resources/drawable-v21/ic_menu_send.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/drawable-v21/ic_menu_send.xml -------------------------------------------------------------------------------- /HslControlsApp/Resources/drawable-v21/ic_menu_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/drawable-v21/ic_menu_share.xml -------------------------------------------------------------------------------- /HslControlsApp/Resources/drawable-v21/ic_menu_slideshow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/drawable-v21/ic_menu_slideshow.xml -------------------------------------------------------------------------------- /HslControlsApp/Resources/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /HslControlsApp/Resources/drawable/side_nav_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/drawable/side_nav_bar.xml -------------------------------------------------------------------------------- /HslControlsApp/Resources/layout/activity_main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/layout/activity_main.axml -------------------------------------------------------------------------------- /HslControlsApp/Resources/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/layout/activity_main.xml -------------------------------------------------------------------------------- /HslControlsApp/Resources/layout/app_bar_main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/layout/app_bar_main.axml -------------------------------------------------------------------------------- /HslControlsApp/Resources/layout/app_bar_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/layout/app_bar_main.xml -------------------------------------------------------------------------------- /HslControlsApp/Resources/layout/content_main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/layout/content_main.axml -------------------------------------------------------------------------------- /HslControlsApp/Resources/layout/content_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/layout/content_main.xml -------------------------------------------------------------------------------- /HslControlsApp/Resources/layout/layout_HslBagFilter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/layout/layout_HslBagFilter.xml -------------------------------------------------------------------------------- /HslControlsApp/Resources/layout/layout_HslBarChart.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/layout/layout_HslBarChart.axml -------------------------------------------------------------------------------- /HslControlsApp/Resources/layout/layout_HslBattery.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/layout/layout_HslBattery.axml -------------------------------------------------------------------------------- /HslControlsApp/Resources/layout/layout_HslBottle.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/layout/layout_HslBottle.axml -------------------------------------------------------------------------------- /HslControlsApp/Resources/layout/layout_HslClassifier.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/layout/layout_HslClassifier.axml -------------------------------------------------------------------------------- /HslControlsApp/Resources/layout/layout_HslCncCenter.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/layout/layout_HslCncCenter.axml -------------------------------------------------------------------------------- /HslControlsApp/Resources/layout/layout_HslConveyer.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/layout/layout_HslConveyer.axml -------------------------------------------------------------------------------- /HslControlsApp/Resources/layout/layout_HslCoolFan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/layout/layout_HslCoolFan.xml -------------------------------------------------------------------------------- /HslControlsApp/Resources/layout/layout_HslCurve.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/layout/layout_HslCurve.axml -------------------------------------------------------------------------------- /HslControlsApp/Resources/layout/layout_HslCurve.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/layout/layout_HslCurve.xml -------------------------------------------------------------------------------- /HslControlsApp/Resources/layout/layout_HslDialPlate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/layout/layout_HslDialPlate.xml -------------------------------------------------------------------------------- /HslControlsApp/Resources/layout/layout_HslGanttChart.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/layout/layout_HslGanttChart.axml -------------------------------------------------------------------------------- /HslControlsApp/Resources/layout/layout_HslGauge.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/layout/layout_HslGauge.axml -------------------------------------------------------------------------------- /HslControlsApp/Resources/layout/layout_HslLanternSimple.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/layout/layout_HslLanternSimple.axml -------------------------------------------------------------------------------- /HslControlsApp/Resources/layout/layout_HslLedDisplay.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/layout/layout_HslLedDisplay.axml -------------------------------------------------------------------------------- /HslControlsApp/Resources/layout/layout_HslMachineCenter.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/layout/layout_HslMachineCenter.axml -------------------------------------------------------------------------------- /HslControlsApp/Resources/layout/layout_HslMotor.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/layout/layout_HslMotor.axml -------------------------------------------------------------------------------- /HslControlsApp/Resources/layout/layout_HslMoveText.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/layout/layout_HslMoveText.xml -------------------------------------------------------------------------------- /HslControlsApp/Resources/layout/layout_HslPieChart.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/layout/layout_HslPieChart.axml -------------------------------------------------------------------------------- /HslControlsApp/Resources/layout/layout_HslPipeLine.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/layout/layout_HslPipeLine.axml -------------------------------------------------------------------------------- /HslControlsApp/Resources/layout/layout_HslProgress.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/layout/layout_HslProgress.axml -------------------------------------------------------------------------------- /HslControlsApp/Resources/layout/layout_HslPumpOne.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/layout/layout_HslPumpOne.axml -------------------------------------------------------------------------------- /HslControlsApp/Resources/layout/layout_HslSignature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/layout/layout_HslSignature.xml -------------------------------------------------------------------------------- /HslControlsApp/Resources/layout/layout_HslStatusManagement.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/layout/layout_HslStatusManagement.axml -------------------------------------------------------------------------------- /HslControlsApp/Resources/layout/layout_HslThermometer.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/layout/layout_HslThermometer.axml -------------------------------------------------------------------------------- /HslControlsApp/Resources/layout/layout_HslVacuumPump.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/layout/layout_HslVacuumPump.xml -------------------------------------------------------------------------------- /HslControlsApp/Resources/layout/layout_HslValves.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/layout/layout_HslValves.axml -------------------------------------------------------------------------------- /HslControlsApp/Resources/layout/layout_HslWaterBox.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/layout/layout_HslWaterBox.axml -------------------------------------------------------------------------------- /HslControlsApp/Resources/layout/nav_header_main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/layout/nav_header_main.axml -------------------------------------------------------------------------------- /HslControlsApp/Resources/layout/nav_header_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/layout/nav_header_main.xml -------------------------------------------------------------------------------- /HslControlsApp/Resources/menu/activity_main_drawer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/menu/activity_main_drawer.xml -------------------------------------------------------------------------------- /HslControlsApp/Resources/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/menu/menu_main.xml -------------------------------------------------------------------------------- /HslControlsApp/Resources/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /HslControlsApp/Resources/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /HslControlsApp/Resources/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /HslControlsApp/Resources/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /HslControlsApp/Resources/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /HslControlsApp/Resources/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /HslControlsApp/Resources/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /HslControlsApp/Resources/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /HslControlsApp/Resources/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /HslControlsApp/Resources/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /HslControlsApp/Resources/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /HslControlsApp/Resources/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /HslControlsApp/Resources/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /HslControlsApp/Resources/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /HslControlsApp/Resources/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /HslControlsApp/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /HslControlsApp/Resources/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /HslControlsApp/Resources/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/values-v21/styles.xml -------------------------------------------------------------------------------- /HslControlsApp/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/values/colors.xml -------------------------------------------------------------------------------- /HslControlsApp/Resources/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/values/dimens.xml -------------------------------------------------------------------------------- /HslControlsApp/Resources/values/drawables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/values/drawables.xml -------------------------------------------------------------------------------- /HslControlsApp/Resources/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /HslControlsApp/Resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/values/strings.xml -------------------------------------------------------------------------------- /HslControlsApp/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsApp/Resources/values/styles.xml -------------------------------------------------------------------------------- /HslControlsDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo.sln -------------------------------------------------------------------------------- /HslControlsDemo/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/App.config -------------------------------------------------------------------------------- /HslControlsDemo/FormBarChart.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormBarChart.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormBarChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormBarChart.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormBarChart.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormBarChart.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormBarChartHorizon.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormBarChartHorizon.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormBarChartHorizon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormBarChartHorizon.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormBarChartHorizon.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormBarChartHorizon.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormBasic.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormBasic.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormBasic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormBasic.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormBasic.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormBasic.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormBattery.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormBattery.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormBattery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormBattery.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormBattery.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormBattery.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormBlower.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormBlower.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormBlower.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormBlower.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormBlower.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormBlower.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormBottle.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormBottle.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormBottle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormBottle.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormBottle.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormBottle.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormCharge.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCharge.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormCharge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCharge.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormCharge.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCharge.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormChart.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormChart.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormChart.designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormChart.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormChart.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormClassifier.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormClassifier.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormClassifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormClassifier.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormClassifier.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormClassifier.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormClock.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormClock.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormClock.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormClock.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormClock.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormCncCenter.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCncCenter.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormCncCenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCncCenter.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormCncCenter.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCncCenter.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormContent.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormConveryer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormConveryer.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormConveryer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormConveryer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormConveryer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormConveryer.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormConveyerRollers.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormConveyerRollers.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormConveyerRollers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormConveyerRollers.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormConveyerRollers.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormConveyerRollers.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormCurve.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurve.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurve.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormCurve.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurve.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormCurve2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurve2.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormCurve2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurve2.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormCurve2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurve2.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormCurve3.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurve3.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormCurve3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurve3.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormCurve3.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurve3.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormCurveHistory.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurveHistory.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormCurveHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurveHistory.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormCurveHistory.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurveHistory.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormCurveHistory10.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurveHistory10.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormCurveHistory10.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurveHistory10.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormCurveHistory10.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurveHistory10.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormCurveHistory11.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurveHistory11.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormCurveHistory11.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurveHistory11.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormCurveHistory11.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurveHistory11.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormCurveHistory12.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurveHistory12.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormCurveHistory12.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurveHistory12.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormCurveHistory12.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurveHistory12.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormCurveHistory2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurveHistory2.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormCurveHistory2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurveHistory2.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormCurveHistory2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurveHistory2.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormCurveHistory3.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurveHistory3.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormCurveHistory3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurveHistory3.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormCurveHistory3.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurveHistory3.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormCurveHistory4.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurveHistory4.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormCurveHistory4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurveHistory4.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormCurveHistory4.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurveHistory4.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormCurveHistory5.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurveHistory5.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormCurveHistory5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurveHistory5.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormCurveHistory5.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurveHistory5.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormCurveHistory6.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurveHistory6.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormCurveHistory6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurveHistory6.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormCurveHistory6.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurveHistory6.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormCurveHistory7.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurveHistory7.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormCurveHistory7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurveHistory7.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormCurveHistory7.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurveHistory7.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormCurveHistory8.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurveHistory8.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormCurveHistory8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurveHistory8.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormCurveHistory8.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurveHistory8.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormCurveHistory9.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurveHistory9.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormCurveHistory9.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurveHistory9.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormCurveHistory9.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormCurveHistory9.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormDeclaration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormDeclaration.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormDeclaration.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormDeclaration.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormDeclaration.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormDigitalInput.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormDigitalInput.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormDigitalInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormDigitalInput.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormDigitalInput.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormDigitalInput.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormFactory.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormFactory.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormFactory.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormFactory.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormFactory.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormGanttDay.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormGanttDay.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormGanttDay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormGanttDay.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormGanttDay.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormGanttDay.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormGauge.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormGauge.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormGauge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormGauge.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormGauge.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormGauge.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormGaugeChart.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormGaugeChart.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormGaugeChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormGaugeChart.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormGaugeChart.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormGaugeChart.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormGobang.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormGobang.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormGobang.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormGobang.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormGobang.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormGobang.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormHMILedSingle.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormHMILedSingle.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormHMILedSingle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormHMILedSingle.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormHMILedSingle.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormHMILedSingle.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormHslBagFilter.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormHslBagFilter.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormHslBagFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormHslBagFilter.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormHslBagFilter.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormHslBagFilter.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormHslChinaMap.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormHslChinaMap.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormHslChinaMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormHslChinaMap.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormHslChinaMap.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormHslChinaMap.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormHslChinaMap2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormHslChinaMap2.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormHslChinaMap2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormHslChinaMap2.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormHslChinaMap2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormHslChinaMap2.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormHslChinaMap3.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormHslChinaMap3.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormHslChinaMap3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormHslChinaMap3.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormHslChinaMap3.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormHslChinaMap3.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormHslCoolFan.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormHslCoolFan.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormHslCoolFan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormHslCoolFan.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormHslCoolFan.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormHslCoolFan.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormHslDialPlate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormHslDialPlate.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormHslDialPlate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormHslDialPlate.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormHslDialPlate.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormHslDialPlate.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormHslLabelCombo.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormHslLabelCombo.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormHslLabelCombo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormHslLabelCombo.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormHslLabelCombo.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormHslLabelCombo.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormHslTable.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormHslTable.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormHslTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormHslTable.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormHslTable.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormHslTable.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormHslTable2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormHslTable2.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormHslTable2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormHslTable2.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormHslTable2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormHslTable2.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormHslTitle.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormHslTitle.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormHslTitle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormHslTitle.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormHslTitle.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormHslTitle.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormHslTruck.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormHslTruck.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormHslTruck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormHslTruck.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormHslTruck.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormHslTruck.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormLanternSimple.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormLanternSimple.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormLanternSimple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormLanternSimple.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormLanternSimple.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormLanternSimple.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormLedDisplay.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormLedDisplay.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormLedDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormLedDisplay.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormLedDisplay.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormLedDisplay.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormLoad.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormLoad.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormLoad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormLoad.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormLoad.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormLoad.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormMachineCenter.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormMachineCenter.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormMachineCenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormMachineCenter.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormMachineCenter.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormMachineCenter.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormMainWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormMainWindow.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormMainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormMainWindow.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormMainWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormMainWindow.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormMotor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormMotor.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormMotor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormMotor.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormMotor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormMotor.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormMoveText.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormMoveText.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormMoveText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormMoveText.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormMoveText.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormMoveText.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormNoBoundaryControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormNoBoundaryControl.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormNoBoundaryControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormNoBoundaryControl.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormNoBoundaryControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormNoBoundaryControl.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormPanel.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormPanel.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormPanel.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormPanelBack.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormPanelBack.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormPanelBack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormPanelBack.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormPanelBack.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormPanelBack.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormPieChart.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormPieChart.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormPieChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormPieChart.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormPieChart.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormPieChart.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormPipeLine.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormPipeLine.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormPipeLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormPipeLine.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormPipeLine.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormPipeLine.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormPipeLineTest.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormPipeLineTest.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormPipeLineTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormPipeLineTest.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormPipeLineTest.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormPipeLineTest.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormPipeLineThree.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormPipeLineThree.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormPipeLineThree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormPipeLineThree.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormPipeLineThree.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormPipeLineThree.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormProgress.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormProgress.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormProgress.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormProgress.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormProgress.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormProgressBar.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormProgressBar.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormProgressBar.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormProgressBar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormProgressBar.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormProgressColorful.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormProgressColorful.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormProgressColorful.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormProgressColorful.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormProgressColorful.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormProgressColorful.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormPropertySetting.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormPropertySetting.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormPropertySetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormPropertySetting.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormPropertySetting.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormPropertySetting.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormPumpOne.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormPumpOne.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormPumpOne.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormPumpOne.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormPumpOne.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormPumpOne.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormSignature.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormSignature.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormSignature.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormSignature.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormSignature.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormStatus.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormStatus.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormStatus.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormStatus.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormStatus.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormTank.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormTank.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormTank.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormTank.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormTank.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormTank.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormTetris.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormTetris.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormTetris.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormTetris.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormTetris.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormTetris.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormTetris2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormTetris2.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormTetris2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormTetris2.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormTetris2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormTetris2.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormThermometer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormThermometer.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormThermometer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormThermometer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormThermometer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormThermometer.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormVacuumPump.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormVacuumPump.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormVacuumPump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormVacuumPump.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormVacuumPump.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormVacuumPump.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormValves.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormValves.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormValves.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormValves.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormValves.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormValves.resx -------------------------------------------------------------------------------- /HslControlsDemo/FormWaterBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormWaterBox.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormWaterBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormWaterBox.cs -------------------------------------------------------------------------------- /HslControlsDemo/FormWaterBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/FormWaterBox.resx -------------------------------------------------------------------------------- /HslControlsDemo/HslControlsDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/HslControlsDemo.csproj -------------------------------------------------------------------------------- /HslControlsDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/Program.cs -------------------------------------------------------------------------------- /HslControlsDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HslControlsDemo/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/Properties/Resources.resx -------------------------------------------------------------------------------- /HslControlsDemo/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /HslControlsDemo/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/Properties/Settings.settings -------------------------------------------------------------------------------- /HslControlsDemo/Scattered T-Storms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/Scattered T-Storms.png -------------------------------------------------------------------------------- /HslControlsDemo/car.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/car.gif -------------------------------------------------------------------------------- /HslControlsDemo/hslcontrols.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/hslcontrols.ico -------------------------------------------------------------------------------- /HslControlsDemo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/packages.config -------------------------------------------------------------------------------- /HslControlsDemo/plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/plane.png -------------------------------------------------------------------------------- /HslControlsDemo/weatherRain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/weatherRain.png -------------------------------------------------------------------------------- /HslControlsDemo/weatherSun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/weatherSun.png -------------------------------------------------------------------------------- /HslControlsDemo/weipay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsDemo/weipay.png -------------------------------------------------------------------------------- /HslControlsWpf/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/App.config -------------------------------------------------------------------------------- /HslControlsWpf/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/App.xaml -------------------------------------------------------------------------------- /HslControlsWpf/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/App.xaml.cs -------------------------------------------------------------------------------- /HslControlsWpf/HslControlsWpf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/HslControlsWpf.csproj -------------------------------------------------------------------------------- /HslControlsWpf/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/MainWindow.xaml -------------------------------------------------------------------------------- /HslControlsWpf/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/MainWindow.xaml.cs -------------------------------------------------------------------------------- /HslControlsWpf/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HslControlsWpf/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /HslControlsWpf/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/Properties/Resources.resx -------------------------------------------------------------------------------- /HslControlsWpf/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /HslControlsWpf/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/Properties/Settings.settings -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslArcGauge.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslArcGauge.xaml -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslArcGauge.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslArcGauge.xaml.cs -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslArrow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslArrow.xaml -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslArrow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslArrow.xaml.cs -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslBagFilter.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslBagFilter.xaml -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslBagFilter.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslBagFilter.xaml.cs -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslBarChart.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslBarChart.xaml -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslBarChart.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslBarChart.xaml.cs -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslBattery.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslBattery.xaml -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslBattery.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslBattery.xaml.cs -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslBottle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslBottle.xaml -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslBottle.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslBottle.xaml.cs -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslCircularGauge.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslCircularGauge.xaml -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslCircularGauge.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslCircularGauge.xaml.cs -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslClassifier.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslClassifier.xaml -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslClassifier.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslClassifier.xaml.cs -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslCncCenter.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslCncCenter.xaml -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslCncCenter.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslCncCenter.xaml.cs -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslCoolFan.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslCoolFan.xaml -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslCoolFan.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslCoolFan.xaml.cs -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslCurve.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslCurve.xaml -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslCurve.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslCurve.xaml.cs -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslCurveHistory.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslCurveHistory.xaml -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslCurveHistory.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslCurveHistory.xaml.cs -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslGanttChart.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslGanttChart.xaml -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslGanttChart.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslGanttChart.xaml.cs -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslHandValve.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslHandValve.xaml -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslHandValve.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslHandValve.xaml.cs -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslLanternSimple.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslLanternSimple.xaml -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslLanternSimple.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslLanternSimple.xaml.cs -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslMachineCenter.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslMachineCenter.xaml -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslMachineCenter.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslMachineCenter.xaml.cs -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslMotorTwo.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslMotorTwo.xaml -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslMotorTwo.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslMotorTwo.xaml.cs -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslMoveText.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslMoveText.xaml -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslMoveText.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslMoveText.xaml.cs -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslPipeLine.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslPipeLine.xaml -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslPipeLine.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslPipeLine.xaml.cs -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslPumpOne.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslPumpOne.xaml -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslPumpOne.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslPumpOne.xaml.cs -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslSignature.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslSignature.xaml -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslSignature.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslSignature.xaml.cs -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslStatusManagement.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslStatusManagement.xaml -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslStatusManagement.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslStatusManagement.xaml.cs -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslThermometer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslThermometer.xaml -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslThermometer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslThermometer.xaml.cs -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslTitle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslTitle.xaml -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslTitle.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslTitle.xaml.cs -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslVacuumPump.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslVacuumPump.xaml -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslVacuumPump.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslVacuumPump.xaml.cs -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslWaterBasin.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslWaterBasin.xaml -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslWaterBasin.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslWaterBasin.xaml.cs -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslWaterBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslWaterBox.xaml -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslWaterBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslWaterBox.xaml.cs -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslWaterPump.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslWaterPump.xaml -------------------------------------------------------------------------------- /HslControlsWpf/WindowHslWaterPump.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowHslWaterPump.xaml.cs -------------------------------------------------------------------------------- /HslControlsWpf/WindowSevenSegments.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowSevenSegments.xaml -------------------------------------------------------------------------------- /HslControlsWpf/WindowSevenSegments.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowSevenSegments.xaml.cs -------------------------------------------------------------------------------- /HslControlsWpf/WindowSizeTest.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowSizeTest.xaml -------------------------------------------------------------------------------- /HslControlsWpf/WindowSizeTest.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/WindowSizeTest.xaml.cs -------------------------------------------------------------------------------- /HslControlsWpf/hsl_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/hsl_logo.jpg -------------------------------------------------------------------------------- /HslControlsWpf/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/packages.config -------------------------------------------------------------------------------- /HslControlsWpf/windowsLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/HslControlsWpf/windowsLogo.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/LICENSE -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/ReadMe.md -------------------------------------------------------------------------------- /download/HslControlsDemo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/download/HslControlsDemo.zip -------------------------------------------------------------------------------- /img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/1.png -------------------------------------------------------------------------------- /img/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/100.png -------------------------------------------------------------------------------- /img/1000.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/1000.gif -------------------------------------------------------------------------------- /img/101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/101.png -------------------------------------------------------------------------------- /img/102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/102.png -------------------------------------------------------------------------------- /img/103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/103.png -------------------------------------------------------------------------------- /img/104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/104.png -------------------------------------------------------------------------------- /img/105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/105.png -------------------------------------------------------------------------------- /img/106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/106.png -------------------------------------------------------------------------------- /img/107.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/107.png -------------------------------------------------------------------------------- /img/108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/108.png -------------------------------------------------------------------------------- /img/109.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/109.png -------------------------------------------------------------------------------- /img/110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/110.png -------------------------------------------------------------------------------- /img/111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/111.png -------------------------------------------------------------------------------- /img/112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/112.png -------------------------------------------------------------------------------- /img/113.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/113.png -------------------------------------------------------------------------------- /img/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/114.png -------------------------------------------------------------------------------- /img/115.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/115.png -------------------------------------------------------------------------------- /img/116.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/116.png -------------------------------------------------------------------------------- /img/117.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/117.png -------------------------------------------------------------------------------- /img/118.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/118.png -------------------------------------------------------------------------------- /img/119.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/119.png -------------------------------------------------------------------------------- /img/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/120.png -------------------------------------------------------------------------------- /img/121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/121.png -------------------------------------------------------------------------------- /img/122.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/122.png -------------------------------------------------------------------------------- /img/123.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/123.png -------------------------------------------------------------------------------- /img/124.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/124.png -------------------------------------------------------------------------------- /img/125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/125.png -------------------------------------------------------------------------------- /img/126.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/126.png -------------------------------------------------------------------------------- /img/127.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/127.png -------------------------------------------------------------------------------- /img/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/128.png -------------------------------------------------------------------------------- /img/129.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/129.png -------------------------------------------------------------------------------- /img/130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/130.png -------------------------------------------------------------------------------- /img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/2.png -------------------------------------------------------------------------------- /img/200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/200.png -------------------------------------------------------------------------------- /img/201.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/201.png -------------------------------------------------------------------------------- /img/202.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/202.png -------------------------------------------------------------------------------- /img/300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/300.png -------------------------------------------------------------------------------- /img/301.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/301.png -------------------------------------------------------------------------------- /img/302.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/302.png -------------------------------------------------------------------------------- /img/303.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dathlin/HslControlsDemo/HEAD/img/303.png --------------------------------------------------------------------------------