├── .gitattributes ├── .gitignore ├── .vs └── Sc │ └── v15 │ ├── .suo │ └── Server │ └── sqlite3 │ ├── db.lock │ ├── storage.ide │ ├── storage.ide-shm │ └── storage.ide-wal ├── Demo2 ├── App.config ├── App.cs ├── Demo2.csproj ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── TestLayer.cs ├── bin │ ├── Debug │ │ ├── Demo2.exe │ │ ├── Demo2.exe.config │ │ ├── Demo2.pdb │ │ ├── Sc.dll │ │ ├── Sc.pdb │ │ ├── SharpDX.DXGI.dll │ │ ├── SharpDX.Direct2D1.dll │ │ ├── SharpDX.Mathematics.dll │ │ ├── SharpDX.dll │ │ └── ThoughtWorks.QRCode.dll │ └── Release │ │ ├── Demo2.exe │ │ ├── Demo2.exe.config │ │ ├── Demo2.pdb │ │ ├── Sc.dll │ │ ├── Sc.pdb │ │ ├── SharpDX.DXGI.dll │ │ ├── SharpDX.Direct2D1.dll │ │ ├── SharpDX.Mathematics.dll │ │ ├── SharpDX.dll │ │ └── ThoughtWorks.QRCode.dll └── obj │ ├── Debug │ ├── Demo2.Form1.resources │ ├── Demo2.Properties.Resources.resources │ ├── Demo2.csproj.CopyComplete │ ├── Demo2.csproj.FileListAbsolute.txt │ ├── Demo2.csproj.GenerateResource.cache │ ├── Demo2.csprojAssemblyReference.cache │ ├── Demo2.exe │ ├── Demo2.pdb │ ├── DesignTimeResolveAssemblyReferences.cache │ └── DesignTimeResolveAssemblyReferencesInput.cache │ └── Release │ ├── Demo2.Form1.resources │ ├── Demo2.Properties.Resources.resources │ ├── Demo2.csproj.CopyComplete │ ├── Demo2.csproj.FileListAbsolute.txt │ ├── Demo2.csproj.GenerateResource.cache │ ├── Demo2.csprojAssemblyReference.cache │ ├── Demo2.exe │ ├── Demo2.pdb │ ├── DesignTimeResolveAssemblyReferences.cache │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── LICENSE ├── README.md ├── ReadmeRes ├── 1.png └── 2.png ├── Sc.sln ├── Sc ├── Properties │ └── AssemblyInfo.cs ├── Sc.csproj ├── Sc.csproj.user ├── Sc │ ├── Animation │ │ ├── AnimationEffect.cs │ │ └── ScAnimation.cs │ ├── Controls │ │ ├── ScButton │ │ │ ├── ScButton.cs │ │ │ └── ScTitleButton.cs │ │ ├── ScCheckBox │ │ │ ├── ScCheckBox.cs │ │ │ └── ScLabelCheckBox.cs │ │ ├── ScGridView │ │ │ ├── ScGridView.cs │ │ │ ├── ScGridViewCore.cs │ │ │ └── ScGridViewCoreContainer.cs │ │ ├── ScLabel │ │ │ └── ScLabel.cs │ │ ├── ScLayerLayoutViewer │ │ │ ├── ScLayerLayoutViewerColumnInfo.cs │ │ │ ├── ScLayerLayoutViewerDoubleScreenViewport.cs │ │ │ ├── ScLayerLayoutViewerHeaderItem.cs │ │ │ ├── ScLayerLayoutViewerHeaderItemContainer.cs │ │ │ ├── ScLayerLayoutViewerItem.cs │ │ │ ├── ScLayerLayoutViewerScreen.cs │ │ │ └── ScLayerLayoutViewerType.cs │ │ ├── ScListView │ │ │ └── ScListView.cs │ │ ├── ScPanel │ │ │ └── ScPanel.cs │ │ ├── ScScrollBar │ │ │ ├── ScScrollBar.cs │ │ │ ├── ScScrollBarSlider.cs │ │ │ └── ScScrollBarType.cs │ │ ├── ScShadow │ │ │ └── ScShadow.cs │ │ ├── ScTab │ │ │ ├── ScTab.cs │ │ │ ├── ScTabHeader.cs │ │ │ ├── ScTabHeaderItem.cs │ │ │ ├── ScTabHeaderPevNextBtn.cs │ │ │ └── SimpleTabType.cs │ │ └── ScTextBox │ │ │ ├── ColorDrawingEffect.cs │ │ │ ├── ScTextBox.cs │ │ │ ├── ScTextRender.cs │ │ │ ├── ScTextView.cs │ │ │ └── ScTextViewBox.cs │ └── Core │ │ ├── ScControlCollection.cs │ │ ├── ScDrawNode.cs │ │ ├── ScGraphics │ │ ├── D2DGraphics.cs │ │ ├── D2DType.cs │ │ ├── IScGraphics.cs │ │ └── ScGraphics.cs │ │ ├── ScLayer.cs │ │ ├── ScLayerControl.cs │ │ ├── ScMgr.cs │ │ ├── ScMouseEventArgs.cs │ │ ├── ScObject.cs │ │ ├── ScReDrawTree.cs │ │ ├── ScType.cs │ │ ├── UpdateLayerFrm.Designer.cs │ │ ├── UpdateLayerFrm.cs │ │ ├── UpdateLayerFrm.resx │ │ └── Win32.cs ├── Utils │ ├── BarCodeAndQRCode │ │ ├── BarCode │ │ │ └── Code128.cs │ │ └── QRCode │ │ │ ├── QRCode.cs │ │ │ └── QRCodeInfoCapacity.cs │ ├── Bitmap │ │ ├── D2D │ │ │ └── Dot9BitmapD2D.cs │ │ └── GDI │ │ │ ├── BitmapProcess.cs │ │ │ ├── ColorDisplace.cs │ │ │ ├── Dot9Bitmap.cs │ │ │ └── GaussianBlur.cs │ ├── CustomProperty │ │ ├── CustomProperty.cs │ │ ├── CustomPropertyCollection.cs │ │ └── CustomPropertyDescriptor.cs │ ├── Draw │ │ ├── DrawTools.cs │ │ ├── DrawUtils.cs │ │ ├── GDIDataD2DUtils.cs │ │ └── LimitBoxDrawUtils.cs │ ├── File │ │ └── FileDirTree.cs │ ├── PrintUtils │ │ ├── CreatePrinterPreSettingFrm.Designer.cs │ │ ├── CreatePrinterPreSettingFrm.cs │ │ ├── CreatePrinterPreSettingFrm.resx │ │ ├── Print.cs │ │ ├── PrintPageBase.cs │ │ ├── PrinterDefaultSettingOp.cs │ │ ├── PrinterPreSettingOp.cs │ │ ├── PrinterSetFrm.cs │ │ ├── PrinterSetFrm.designer.cs │ │ ├── PrinterSetFrm.resx │ │ ├── PrinterSetting.cs │ │ ├── PrinterSetting │ │ │ ├── AddPrintModuleFrm.Designer.cs │ │ │ ├── AddPrintModuleFrm.cs │ │ │ ├── AddPrintModuleFrm.resx │ │ │ ├── CreatePrinterExSettingFrm.Designer.cs │ │ │ ├── CreatePrinterExSettingFrm.cs │ │ │ ├── CreatePrinterExSettingFrm.resx │ │ │ ├── PrintModuleInfoOp.cs │ │ │ ├── PrinterDocumentPreSettingOp.cs │ │ │ ├── PrinterExSettingInfoOp.cs │ │ │ └── PrinterSettingInfoOp.cs │ │ ├── ReportView.Designer.cs │ │ ├── ReportView.cs │ │ └── ReportView.resx │ ├── System │ │ ├── ControlPreventFlash.cs │ │ ├── ExWindowsAPI.cs │ │ ├── MonitorInfo.cs │ │ └── Register.cs │ ├── Table │ │ ├── Table.cs │ │ ├── TableBaseTypes.cs │ │ ├── TableEx.cs │ │ └── TableMgr.cs │ ├── Utils.cs │ └── hook │ │ ├── GlobalHook.cs │ │ ├── HookTestForm.cs │ │ ├── KeyboardHook.cs │ │ ├── KeyboardSimulator.cs │ │ ├── MouseHook.cs │ │ └── MouseSimulator.cs ├── bin │ ├── Debug │ │ ├── Sc.dll │ │ ├── Sc.pdb │ │ ├── SharpDX.DXGI.dll │ │ ├── SharpDX.Direct2D1.dll │ │ ├── SharpDX.Mathematics.dll │ │ ├── SharpDX.dll │ │ └── ThoughtWorks.QRCode.dll │ ├── Release │ │ ├── Sc.dll │ │ ├── Sc.pdb │ │ ├── SharpDX.DXGI.dll │ │ ├── SharpDX.Direct2D1.dll │ │ ├── SharpDX.Mathematics.dll │ │ ├── SharpDX.dll │ │ └── ThoughtWorks.QRCode.dll │ ├── SharpDX.DXGI.dll │ ├── SharpDX.Direct2D1.dll │ ├── SharpDX.Mathematics.dll │ ├── SharpDX.dll │ └── ThoughtWorks.QRCode.dll └── obj │ ├── Debug │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── PrintUtils.AddPrintModuleFrm.resources │ ├── PrintUtils.CreatePrinterExSettingFrm.resources │ ├── PrintUtils.CreatePrinterPreSettingFrm.resources │ ├── PrintUtils.PrinterSetFrm.resources │ ├── PrintUtils.ReportView.resources │ ├── Sc.UpdateLayerFrm.resources │ ├── Sc.csproj.CopyComplete │ ├── Sc.csproj.CoreCompileInputs.cache │ ├── Sc.csproj.FileListAbsolute.txt │ ├── Sc.csproj.GenerateResource.cache │ ├── Sc.dll │ ├── Sc.pdb │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── Release │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── PrintUtils.AddPrintModuleFrm.resources │ ├── PrintUtils.CreatePrinterExSettingFrm.resources │ ├── PrintUtils.CreatePrinterPreSettingFrm.resources │ ├── PrintUtils.PrinterSetFrm.resources │ ├── PrintUtils.ReportView.resources │ ├── Sc.UpdateLayerFrm.resources │ ├── Sc.csproj.CopyComplete │ ├── Sc.csproj.FileListAbsolute.txt │ ├── Sc.csproj.GenerateResource.cache │ ├── Sc.csprojAssemblyReference.cache │ ├── Sc.dll │ └── Sc.pdb └── demo ├── App.config ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── GoodsListViewer.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── bin ├── Debug │ ├── DevComponents.DotNetBar2.dll │ ├── Sc.dll │ ├── Sc.pdb │ ├── SharpDX.DXGI.dll │ ├── SharpDX.Direct2D1.dll │ ├── SharpDX.Mathematics.dll │ ├── SharpDX.dll │ ├── ThoughtWorks.QRCode.dll │ ├── demo.exe │ ├── demo.exe.config │ ├── demo.pdb │ ├── demo.vshost.exe │ ├── demo.vshost.exe.config │ └── demo.vshost.exe.manifest └── Release │ ├── DevComponents.DotNetBar2.dll │ ├── DevComponents.DotNetBar2.xml │ ├── Sc.dll │ ├── Sc.pdb │ ├── SharpDX.DXGI.dll │ ├── SharpDX.Direct2D1.dll │ ├── SharpDX.Mathematics.dll │ ├── SharpDX.dll │ ├── ThoughtWorks.QRCode.dll │ ├── demo.exe │ ├── demo.exe.config │ ├── demo.pdb │ ├── demo.vshost.exe │ ├── demo.vshost.exe.config │ └── demo.vshost.exe.manifest ├── demo.csproj ├── demo.csproj.user └── obj ├── Debug ├── DesignTimeResolveAssemblyReferences.cache ├── DesignTimeResolveAssemblyReferencesInput.cache ├── TempPE │ └── Properties.Resources.Designer.cs.dll ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── build.force ├── demo.Form1.resources ├── demo.Properties.Resources.resources ├── demo.csproj.CopyComplete ├── demo.csproj.CoreCompileInputs.cache ├── demo.csproj.FileListAbsolute.txt ├── demo.csproj.GenerateResource.Cache ├── demo.csprojAssemblyReference.cache ├── demo.csprojResolveAssemblyReference.cache ├── demo.exe └── demo.pdb └── Release ├── DesignTimeResolveAssemblyReferencesInput.cache ├── TempPE └── Properties.Resources.Designer.cs.dll ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── demo.Form1.resources ├── demo.Properties.Resources.resources ├── demo.csproj.CopyComplete ├── demo.csproj.CoreCompileInputs.cache ├── demo.csproj.FileListAbsolute.txt ├── demo.csproj.GenerateResource.cache ├── demo.csprojAssemblyReference.cache ├── demo.csprojResolveAssemblyReference.cache ├── demo.exe └── demo.pdb /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vs -------------------------------------------------------------------------------- /.vs/Sc/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/.vs/Sc/v15/.suo -------------------------------------------------------------------------------- /.vs/Sc/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/Sc/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/.vs/Sc/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /.vs/Sc/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/.vs/Sc/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /.vs/Sc/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/.vs/Sc/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Demo2/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/App.config -------------------------------------------------------------------------------- /Demo2/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/App.cs -------------------------------------------------------------------------------- /Demo2/Demo2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/Demo2.csproj -------------------------------------------------------------------------------- /Demo2/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/Form1.Designer.cs -------------------------------------------------------------------------------- /Demo2/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/Form1.cs -------------------------------------------------------------------------------- /Demo2/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/Form1.resx -------------------------------------------------------------------------------- /Demo2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/Program.cs -------------------------------------------------------------------------------- /Demo2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Demo2/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Demo2/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/Properties/Resources.resx -------------------------------------------------------------------------------- /Demo2/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Demo2/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/Properties/Settings.settings -------------------------------------------------------------------------------- /Demo2/TestLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/TestLayer.cs -------------------------------------------------------------------------------- /Demo2/bin/Debug/Demo2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/bin/Debug/Demo2.exe -------------------------------------------------------------------------------- /Demo2/bin/Debug/Demo2.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/bin/Debug/Demo2.exe.config -------------------------------------------------------------------------------- /Demo2/bin/Debug/Demo2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/bin/Debug/Demo2.pdb -------------------------------------------------------------------------------- /Demo2/bin/Debug/Sc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/bin/Debug/Sc.dll -------------------------------------------------------------------------------- /Demo2/bin/Debug/Sc.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/bin/Debug/Sc.pdb -------------------------------------------------------------------------------- /Demo2/bin/Debug/SharpDX.DXGI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/bin/Debug/SharpDX.DXGI.dll -------------------------------------------------------------------------------- /Demo2/bin/Debug/SharpDX.Direct2D1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/bin/Debug/SharpDX.Direct2D1.dll -------------------------------------------------------------------------------- /Demo2/bin/Debug/SharpDX.Mathematics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/bin/Debug/SharpDX.Mathematics.dll -------------------------------------------------------------------------------- /Demo2/bin/Debug/SharpDX.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/bin/Debug/SharpDX.dll -------------------------------------------------------------------------------- /Demo2/bin/Debug/ThoughtWorks.QRCode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/bin/Debug/ThoughtWorks.QRCode.dll -------------------------------------------------------------------------------- /Demo2/bin/Release/Demo2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/bin/Release/Demo2.exe -------------------------------------------------------------------------------- /Demo2/bin/Release/Demo2.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/bin/Release/Demo2.exe.config -------------------------------------------------------------------------------- /Demo2/bin/Release/Demo2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/bin/Release/Demo2.pdb -------------------------------------------------------------------------------- /Demo2/bin/Release/Sc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/bin/Release/Sc.dll -------------------------------------------------------------------------------- /Demo2/bin/Release/Sc.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/bin/Release/Sc.pdb -------------------------------------------------------------------------------- /Demo2/bin/Release/SharpDX.DXGI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/bin/Release/SharpDX.DXGI.dll -------------------------------------------------------------------------------- /Demo2/bin/Release/SharpDX.Direct2D1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/bin/Release/SharpDX.Direct2D1.dll -------------------------------------------------------------------------------- /Demo2/bin/Release/SharpDX.Mathematics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/bin/Release/SharpDX.Mathematics.dll -------------------------------------------------------------------------------- /Demo2/bin/Release/SharpDX.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/bin/Release/SharpDX.dll -------------------------------------------------------------------------------- /Demo2/bin/Release/ThoughtWorks.QRCode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/bin/Release/ThoughtWorks.QRCode.dll -------------------------------------------------------------------------------- /Demo2/obj/Debug/Demo2.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/obj/Debug/Demo2.Form1.resources -------------------------------------------------------------------------------- /Demo2/obj/Debug/Demo2.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/obj/Debug/Demo2.Properties.Resources.resources -------------------------------------------------------------------------------- /Demo2/obj/Debug/Demo2.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Demo2/obj/Debug/Demo2.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/obj/Debug/Demo2.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Demo2/obj/Debug/Demo2.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/obj/Debug/Demo2.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /Demo2/obj/Debug/Demo2.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/obj/Debug/Demo2.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Demo2/obj/Debug/Demo2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/obj/Debug/Demo2.exe -------------------------------------------------------------------------------- /Demo2/obj/Debug/Demo2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/obj/Debug/Demo2.pdb -------------------------------------------------------------------------------- /Demo2/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Demo2/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Demo2/obj/Release/Demo2.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/obj/Release/Demo2.Form1.resources -------------------------------------------------------------------------------- /Demo2/obj/Release/Demo2.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/obj/Release/Demo2.Properties.Resources.resources -------------------------------------------------------------------------------- /Demo2/obj/Release/Demo2.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Demo2/obj/Release/Demo2.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/obj/Release/Demo2.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Demo2/obj/Release/Demo2.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/obj/Release/Demo2.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /Demo2/obj/Release/Demo2.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/obj/Release/Demo2.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Demo2/obj/Release/Demo2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/obj/Release/Demo2.exe -------------------------------------------------------------------------------- /Demo2/obj/Release/Demo2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/obj/Release/Demo2.pdb -------------------------------------------------------------------------------- /Demo2/obj/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/obj/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Demo2/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Demo2/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/README.md -------------------------------------------------------------------------------- /ReadmeRes/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/ReadmeRes/1.png -------------------------------------------------------------------------------- /ReadmeRes/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/ReadmeRes/2.png -------------------------------------------------------------------------------- /Sc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc.sln -------------------------------------------------------------------------------- /Sc/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Sc/Sc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc.csproj -------------------------------------------------------------------------------- /Sc/Sc.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc.csproj.user -------------------------------------------------------------------------------- /Sc/Sc/Animation/AnimationEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Animation/AnimationEffect.cs -------------------------------------------------------------------------------- /Sc/Sc/Animation/ScAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Animation/ScAnimation.cs -------------------------------------------------------------------------------- /Sc/Sc/Controls/ScButton/ScButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Controls/ScButton/ScButton.cs -------------------------------------------------------------------------------- /Sc/Sc/Controls/ScButton/ScTitleButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Controls/ScButton/ScTitleButton.cs -------------------------------------------------------------------------------- /Sc/Sc/Controls/ScCheckBox/ScCheckBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Controls/ScCheckBox/ScCheckBox.cs -------------------------------------------------------------------------------- /Sc/Sc/Controls/ScCheckBox/ScLabelCheckBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Controls/ScCheckBox/ScLabelCheckBox.cs -------------------------------------------------------------------------------- /Sc/Sc/Controls/ScGridView/ScGridView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Controls/ScGridView/ScGridView.cs -------------------------------------------------------------------------------- /Sc/Sc/Controls/ScGridView/ScGridViewCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Controls/ScGridView/ScGridViewCore.cs -------------------------------------------------------------------------------- /Sc/Sc/Controls/ScGridView/ScGridViewCoreContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Controls/ScGridView/ScGridViewCoreContainer.cs -------------------------------------------------------------------------------- /Sc/Sc/Controls/ScLabel/ScLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Controls/ScLabel/ScLabel.cs -------------------------------------------------------------------------------- /Sc/Sc/Controls/ScLayerLayoutViewer/ScLayerLayoutViewerColumnInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Controls/ScLayerLayoutViewer/ScLayerLayoutViewerColumnInfo.cs -------------------------------------------------------------------------------- /Sc/Sc/Controls/ScLayerLayoutViewer/ScLayerLayoutViewerDoubleScreenViewport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Controls/ScLayerLayoutViewer/ScLayerLayoutViewerDoubleScreenViewport.cs -------------------------------------------------------------------------------- /Sc/Sc/Controls/ScLayerLayoutViewer/ScLayerLayoutViewerHeaderItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Controls/ScLayerLayoutViewer/ScLayerLayoutViewerHeaderItem.cs -------------------------------------------------------------------------------- /Sc/Sc/Controls/ScLayerLayoutViewer/ScLayerLayoutViewerHeaderItemContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Controls/ScLayerLayoutViewer/ScLayerLayoutViewerHeaderItemContainer.cs -------------------------------------------------------------------------------- /Sc/Sc/Controls/ScLayerLayoutViewer/ScLayerLayoutViewerItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Controls/ScLayerLayoutViewer/ScLayerLayoutViewerItem.cs -------------------------------------------------------------------------------- /Sc/Sc/Controls/ScLayerLayoutViewer/ScLayerLayoutViewerScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Controls/ScLayerLayoutViewer/ScLayerLayoutViewerScreen.cs -------------------------------------------------------------------------------- /Sc/Sc/Controls/ScLayerLayoutViewer/ScLayerLayoutViewerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Controls/ScLayerLayoutViewer/ScLayerLayoutViewerType.cs -------------------------------------------------------------------------------- /Sc/Sc/Controls/ScListView/ScListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Controls/ScListView/ScListView.cs -------------------------------------------------------------------------------- /Sc/Sc/Controls/ScPanel/ScPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Controls/ScPanel/ScPanel.cs -------------------------------------------------------------------------------- /Sc/Sc/Controls/ScScrollBar/ScScrollBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Controls/ScScrollBar/ScScrollBar.cs -------------------------------------------------------------------------------- /Sc/Sc/Controls/ScScrollBar/ScScrollBarSlider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Controls/ScScrollBar/ScScrollBarSlider.cs -------------------------------------------------------------------------------- /Sc/Sc/Controls/ScScrollBar/ScScrollBarType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Controls/ScScrollBar/ScScrollBarType.cs -------------------------------------------------------------------------------- /Sc/Sc/Controls/ScShadow/ScShadow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Controls/ScShadow/ScShadow.cs -------------------------------------------------------------------------------- /Sc/Sc/Controls/ScTab/ScTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Controls/ScTab/ScTab.cs -------------------------------------------------------------------------------- /Sc/Sc/Controls/ScTab/ScTabHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Controls/ScTab/ScTabHeader.cs -------------------------------------------------------------------------------- /Sc/Sc/Controls/ScTab/ScTabHeaderItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Controls/ScTab/ScTabHeaderItem.cs -------------------------------------------------------------------------------- /Sc/Sc/Controls/ScTab/ScTabHeaderPevNextBtn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Controls/ScTab/ScTabHeaderPevNextBtn.cs -------------------------------------------------------------------------------- /Sc/Sc/Controls/ScTab/SimpleTabType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Controls/ScTab/SimpleTabType.cs -------------------------------------------------------------------------------- /Sc/Sc/Controls/ScTextBox/ColorDrawingEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Controls/ScTextBox/ColorDrawingEffect.cs -------------------------------------------------------------------------------- /Sc/Sc/Controls/ScTextBox/ScTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Controls/ScTextBox/ScTextBox.cs -------------------------------------------------------------------------------- /Sc/Sc/Controls/ScTextBox/ScTextRender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Controls/ScTextBox/ScTextRender.cs -------------------------------------------------------------------------------- /Sc/Sc/Controls/ScTextBox/ScTextView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Controls/ScTextBox/ScTextView.cs -------------------------------------------------------------------------------- /Sc/Sc/Controls/ScTextBox/ScTextViewBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Controls/ScTextBox/ScTextViewBox.cs -------------------------------------------------------------------------------- /Sc/Sc/Core/ScControlCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Core/ScControlCollection.cs -------------------------------------------------------------------------------- /Sc/Sc/Core/ScDrawNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Core/ScDrawNode.cs -------------------------------------------------------------------------------- /Sc/Sc/Core/ScGraphics/D2DGraphics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Core/ScGraphics/D2DGraphics.cs -------------------------------------------------------------------------------- /Sc/Sc/Core/ScGraphics/D2DType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Core/ScGraphics/D2DType.cs -------------------------------------------------------------------------------- /Sc/Sc/Core/ScGraphics/IScGraphics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Core/ScGraphics/IScGraphics.cs -------------------------------------------------------------------------------- /Sc/Sc/Core/ScGraphics/ScGraphics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Core/ScGraphics/ScGraphics.cs -------------------------------------------------------------------------------- /Sc/Sc/Core/ScLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Core/ScLayer.cs -------------------------------------------------------------------------------- /Sc/Sc/Core/ScLayerControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Core/ScLayerControl.cs -------------------------------------------------------------------------------- /Sc/Sc/Core/ScMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Core/ScMgr.cs -------------------------------------------------------------------------------- /Sc/Sc/Core/ScMouseEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Core/ScMouseEventArgs.cs -------------------------------------------------------------------------------- /Sc/Sc/Core/ScObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Core/ScObject.cs -------------------------------------------------------------------------------- /Sc/Sc/Core/ScReDrawTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Core/ScReDrawTree.cs -------------------------------------------------------------------------------- /Sc/Sc/Core/ScType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Core/ScType.cs -------------------------------------------------------------------------------- /Sc/Sc/Core/UpdateLayerFrm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Core/UpdateLayerFrm.Designer.cs -------------------------------------------------------------------------------- /Sc/Sc/Core/UpdateLayerFrm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Core/UpdateLayerFrm.cs -------------------------------------------------------------------------------- /Sc/Sc/Core/UpdateLayerFrm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Core/UpdateLayerFrm.resx -------------------------------------------------------------------------------- /Sc/Sc/Core/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Sc/Core/Win32.cs -------------------------------------------------------------------------------- /Sc/Utils/BarCodeAndQRCode/BarCode/Code128.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/BarCodeAndQRCode/BarCode/Code128.cs -------------------------------------------------------------------------------- /Sc/Utils/BarCodeAndQRCode/QRCode/QRCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/BarCodeAndQRCode/QRCode/QRCode.cs -------------------------------------------------------------------------------- /Sc/Utils/BarCodeAndQRCode/QRCode/QRCodeInfoCapacity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/BarCodeAndQRCode/QRCode/QRCodeInfoCapacity.cs -------------------------------------------------------------------------------- /Sc/Utils/Bitmap/D2D/Dot9BitmapD2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/Bitmap/D2D/Dot9BitmapD2D.cs -------------------------------------------------------------------------------- /Sc/Utils/Bitmap/GDI/BitmapProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/Bitmap/GDI/BitmapProcess.cs -------------------------------------------------------------------------------- /Sc/Utils/Bitmap/GDI/ColorDisplace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/Bitmap/GDI/ColorDisplace.cs -------------------------------------------------------------------------------- /Sc/Utils/Bitmap/GDI/Dot9Bitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/Bitmap/GDI/Dot9Bitmap.cs -------------------------------------------------------------------------------- /Sc/Utils/Bitmap/GDI/GaussianBlur.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/Bitmap/GDI/GaussianBlur.cs -------------------------------------------------------------------------------- /Sc/Utils/CustomProperty/CustomProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/CustomProperty/CustomProperty.cs -------------------------------------------------------------------------------- /Sc/Utils/CustomProperty/CustomPropertyCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/CustomProperty/CustomPropertyCollection.cs -------------------------------------------------------------------------------- /Sc/Utils/CustomProperty/CustomPropertyDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/CustomProperty/CustomPropertyDescriptor.cs -------------------------------------------------------------------------------- /Sc/Utils/Draw/DrawTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/Draw/DrawTools.cs -------------------------------------------------------------------------------- /Sc/Utils/Draw/DrawUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/Draw/DrawUtils.cs -------------------------------------------------------------------------------- /Sc/Utils/Draw/GDIDataD2DUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/Draw/GDIDataD2DUtils.cs -------------------------------------------------------------------------------- /Sc/Utils/Draw/LimitBoxDrawUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/Draw/LimitBoxDrawUtils.cs -------------------------------------------------------------------------------- /Sc/Utils/File/FileDirTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/File/FileDirTree.cs -------------------------------------------------------------------------------- /Sc/Utils/PrintUtils/CreatePrinterPreSettingFrm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/PrintUtils/CreatePrinterPreSettingFrm.Designer.cs -------------------------------------------------------------------------------- /Sc/Utils/PrintUtils/CreatePrinterPreSettingFrm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/PrintUtils/CreatePrinterPreSettingFrm.cs -------------------------------------------------------------------------------- /Sc/Utils/PrintUtils/CreatePrinterPreSettingFrm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/PrintUtils/CreatePrinterPreSettingFrm.resx -------------------------------------------------------------------------------- /Sc/Utils/PrintUtils/Print.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/PrintUtils/Print.cs -------------------------------------------------------------------------------- /Sc/Utils/PrintUtils/PrintPageBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/PrintUtils/PrintPageBase.cs -------------------------------------------------------------------------------- /Sc/Utils/PrintUtils/PrinterDefaultSettingOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/PrintUtils/PrinterDefaultSettingOp.cs -------------------------------------------------------------------------------- /Sc/Utils/PrintUtils/PrinterPreSettingOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/PrintUtils/PrinterPreSettingOp.cs -------------------------------------------------------------------------------- /Sc/Utils/PrintUtils/PrinterSetFrm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/PrintUtils/PrinterSetFrm.cs -------------------------------------------------------------------------------- /Sc/Utils/PrintUtils/PrinterSetFrm.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/PrintUtils/PrinterSetFrm.designer.cs -------------------------------------------------------------------------------- /Sc/Utils/PrintUtils/PrinterSetFrm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/PrintUtils/PrinterSetFrm.resx -------------------------------------------------------------------------------- /Sc/Utils/PrintUtils/PrinterSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/PrintUtils/PrinterSetting.cs -------------------------------------------------------------------------------- /Sc/Utils/PrintUtils/PrinterSetting/AddPrintModuleFrm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/PrintUtils/PrinterSetting/AddPrintModuleFrm.Designer.cs -------------------------------------------------------------------------------- /Sc/Utils/PrintUtils/PrinterSetting/AddPrintModuleFrm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/PrintUtils/PrinterSetting/AddPrintModuleFrm.cs -------------------------------------------------------------------------------- /Sc/Utils/PrintUtils/PrinterSetting/AddPrintModuleFrm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/PrintUtils/PrinterSetting/AddPrintModuleFrm.resx -------------------------------------------------------------------------------- /Sc/Utils/PrintUtils/PrinterSetting/CreatePrinterExSettingFrm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/PrintUtils/PrinterSetting/CreatePrinterExSettingFrm.Designer.cs -------------------------------------------------------------------------------- /Sc/Utils/PrintUtils/PrinterSetting/CreatePrinterExSettingFrm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/PrintUtils/PrinterSetting/CreatePrinterExSettingFrm.cs -------------------------------------------------------------------------------- /Sc/Utils/PrintUtils/PrinterSetting/CreatePrinterExSettingFrm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/PrintUtils/PrinterSetting/CreatePrinterExSettingFrm.resx -------------------------------------------------------------------------------- /Sc/Utils/PrintUtils/PrinterSetting/PrintModuleInfoOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/PrintUtils/PrinterSetting/PrintModuleInfoOp.cs -------------------------------------------------------------------------------- /Sc/Utils/PrintUtils/PrinterSetting/PrinterDocumentPreSettingOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/PrintUtils/PrinterSetting/PrinterDocumentPreSettingOp.cs -------------------------------------------------------------------------------- /Sc/Utils/PrintUtils/PrinterSetting/PrinterExSettingInfoOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/PrintUtils/PrinterSetting/PrinterExSettingInfoOp.cs -------------------------------------------------------------------------------- /Sc/Utils/PrintUtils/PrinterSetting/PrinterSettingInfoOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/PrintUtils/PrinterSetting/PrinterSettingInfoOp.cs -------------------------------------------------------------------------------- /Sc/Utils/PrintUtils/ReportView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/PrintUtils/ReportView.Designer.cs -------------------------------------------------------------------------------- /Sc/Utils/PrintUtils/ReportView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/PrintUtils/ReportView.cs -------------------------------------------------------------------------------- /Sc/Utils/PrintUtils/ReportView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/PrintUtils/ReportView.resx -------------------------------------------------------------------------------- /Sc/Utils/System/ControlPreventFlash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/System/ControlPreventFlash.cs -------------------------------------------------------------------------------- /Sc/Utils/System/ExWindowsAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/System/ExWindowsAPI.cs -------------------------------------------------------------------------------- /Sc/Utils/System/MonitorInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/System/MonitorInfo.cs -------------------------------------------------------------------------------- /Sc/Utils/System/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/System/Register.cs -------------------------------------------------------------------------------- /Sc/Utils/Table/Table.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/Table/Table.cs -------------------------------------------------------------------------------- /Sc/Utils/Table/TableBaseTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/Table/TableBaseTypes.cs -------------------------------------------------------------------------------- /Sc/Utils/Table/TableEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/Table/TableEx.cs -------------------------------------------------------------------------------- /Sc/Utils/Table/TableMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/Table/TableMgr.cs -------------------------------------------------------------------------------- /Sc/Utils/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/Utils.cs -------------------------------------------------------------------------------- /Sc/Utils/hook/GlobalHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/hook/GlobalHook.cs -------------------------------------------------------------------------------- /Sc/Utils/hook/HookTestForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/hook/HookTestForm.cs -------------------------------------------------------------------------------- /Sc/Utils/hook/KeyboardHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/hook/KeyboardHook.cs -------------------------------------------------------------------------------- /Sc/Utils/hook/KeyboardSimulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/hook/KeyboardSimulator.cs -------------------------------------------------------------------------------- /Sc/Utils/hook/MouseHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/hook/MouseHook.cs -------------------------------------------------------------------------------- /Sc/Utils/hook/MouseSimulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/Utils/hook/MouseSimulator.cs -------------------------------------------------------------------------------- /Sc/bin/Debug/Sc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/bin/Debug/Sc.dll -------------------------------------------------------------------------------- /Sc/bin/Debug/Sc.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/bin/Debug/Sc.pdb -------------------------------------------------------------------------------- /Sc/bin/Debug/SharpDX.DXGI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/bin/Debug/SharpDX.DXGI.dll -------------------------------------------------------------------------------- /Sc/bin/Debug/SharpDX.Direct2D1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/bin/Debug/SharpDX.Direct2D1.dll -------------------------------------------------------------------------------- /Sc/bin/Debug/SharpDX.Mathematics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/bin/Debug/SharpDX.Mathematics.dll -------------------------------------------------------------------------------- /Sc/bin/Debug/SharpDX.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/bin/Debug/SharpDX.dll -------------------------------------------------------------------------------- /Sc/bin/Debug/ThoughtWorks.QRCode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/bin/Debug/ThoughtWorks.QRCode.dll -------------------------------------------------------------------------------- /Sc/bin/Release/Sc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/bin/Release/Sc.dll -------------------------------------------------------------------------------- /Sc/bin/Release/Sc.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/bin/Release/Sc.pdb -------------------------------------------------------------------------------- /Sc/bin/Release/SharpDX.DXGI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/bin/Release/SharpDX.DXGI.dll -------------------------------------------------------------------------------- /Sc/bin/Release/SharpDX.Direct2D1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/bin/Release/SharpDX.Direct2D1.dll -------------------------------------------------------------------------------- /Sc/bin/Release/SharpDX.Mathematics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/bin/Release/SharpDX.Mathematics.dll -------------------------------------------------------------------------------- /Sc/bin/Release/SharpDX.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/bin/Release/SharpDX.dll -------------------------------------------------------------------------------- /Sc/bin/Release/ThoughtWorks.QRCode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/bin/Release/ThoughtWorks.QRCode.dll -------------------------------------------------------------------------------- /Sc/bin/SharpDX.DXGI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/bin/SharpDX.DXGI.dll -------------------------------------------------------------------------------- /Sc/bin/SharpDX.Direct2D1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/bin/SharpDX.Direct2D1.dll -------------------------------------------------------------------------------- /Sc/bin/SharpDX.Mathematics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/bin/SharpDX.Mathematics.dll -------------------------------------------------------------------------------- /Sc/bin/SharpDX.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/bin/SharpDX.dll -------------------------------------------------------------------------------- /Sc/bin/ThoughtWorks.QRCode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/bin/ThoughtWorks.QRCode.dll -------------------------------------------------------------------------------- /Sc/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Sc/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Sc/obj/Debug/PrintUtils.AddPrintModuleFrm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/obj/Debug/PrintUtils.AddPrintModuleFrm.resources -------------------------------------------------------------------------------- /Sc/obj/Debug/PrintUtils.CreatePrinterExSettingFrm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/obj/Debug/PrintUtils.CreatePrinterExSettingFrm.resources -------------------------------------------------------------------------------- /Sc/obj/Debug/PrintUtils.CreatePrinterPreSettingFrm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/obj/Debug/PrintUtils.CreatePrinterPreSettingFrm.resources -------------------------------------------------------------------------------- /Sc/obj/Debug/PrintUtils.PrinterSetFrm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/obj/Debug/PrintUtils.PrinterSetFrm.resources -------------------------------------------------------------------------------- /Sc/obj/Debug/PrintUtils.ReportView.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/obj/Debug/PrintUtils.ReportView.resources -------------------------------------------------------------------------------- /Sc/obj/Debug/Sc.UpdateLayerFrm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/obj/Debug/Sc.UpdateLayerFrm.resources -------------------------------------------------------------------------------- /Sc/obj/Debug/Sc.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sc/obj/Debug/Sc.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 0a35c353fa0ee1eaaed10f2e305cfa6248e6a814 2 | -------------------------------------------------------------------------------- /Sc/obj/Debug/Sc.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/obj/Debug/Sc.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Sc/obj/Debug/Sc.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/obj/Debug/Sc.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /Sc/obj/Debug/Sc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/obj/Debug/Sc.dll -------------------------------------------------------------------------------- /Sc/obj/Debug/Sc.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/obj/Debug/Sc.pdb -------------------------------------------------------------------------------- /Sc/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sc/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sc/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sc/obj/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/obj/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Sc/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Sc/obj/Release/PrintUtils.AddPrintModuleFrm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/obj/Release/PrintUtils.AddPrintModuleFrm.resources -------------------------------------------------------------------------------- /Sc/obj/Release/PrintUtils.CreatePrinterExSettingFrm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/obj/Release/PrintUtils.CreatePrinterExSettingFrm.resources -------------------------------------------------------------------------------- /Sc/obj/Release/PrintUtils.CreatePrinterPreSettingFrm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/obj/Release/PrintUtils.CreatePrinterPreSettingFrm.resources -------------------------------------------------------------------------------- /Sc/obj/Release/PrintUtils.PrinterSetFrm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/obj/Release/PrintUtils.PrinterSetFrm.resources -------------------------------------------------------------------------------- /Sc/obj/Release/PrintUtils.ReportView.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/obj/Release/PrintUtils.ReportView.resources -------------------------------------------------------------------------------- /Sc/obj/Release/Sc.UpdateLayerFrm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/obj/Release/Sc.UpdateLayerFrm.resources -------------------------------------------------------------------------------- /Sc/obj/Release/Sc.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sc/obj/Release/Sc.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/obj/Release/Sc.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Sc/obj/Release/Sc.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/obj/Release/Sc.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /Sc/obj/Release/Sc.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/obj/Release/Sc.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Sc/obj/Release/Sc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/obj/Release/Sc.dll -------------------------------------------------------------------------------- /Sc/obj/Release/Sc.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/Sc/obj/Release/Sc.pdb -------------------------------------------------------------------------------- /demo/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/App.config -------------------------------------------------------------------------------- /demo/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/Form1.Designer.cs -------------------------------------------------------------------------------- /demo/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/Form1.cs -------------------------------------------------------------------------------- /demo/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/Form1.resx -------------------------------------------------------------------------------- /demo/GoodsListViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/GoodsListViewer.cs -------------------------------------------------------------------------------- /demo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/Program.cs -------------------------------------------------------------------------------- /demo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /demo/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /demo/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/Properties/Resources.resx -------------------------------------------------------------------------------- /demo/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /demo/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/Properties/Settings.settings -------------------------------------------------------------------------------- /demo/bin/Debug/DevComponents.DotNetBar2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/bin/Debug/DevComponents.DotNetBar2.dll -------------------------------------------------------------------------------- /demo/bin/Debug/Sc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/bin/Debug/Sc.dll -------------------------------------------------------------------------------- /demo/bin/Debug/Sc.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/bin/Debug/Sc.pdb -------------------------------------------------------------------------------- /demo/bin/Debug/SharpDX.DXGI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/bin/Debug/SharpDX.DXGI.dll -------------------------------------------------------------------------------- /demo/bin/Debug/SharpDX.Direct2D1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/bin/Debug/SharpDX.Direct2D1.dll -------------------------------------------------------------------------------- /demo/bin/Debug/SharpDX.Mathematics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/bin/Debug/SharpDX.Mathematics.dll -------------------------------------------------------------------------------- /demo/bin/Debug/SharpDX.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/bin/Debug/SharpDX.dll -------------------------------------------------------------------------------- /demo/bin/Debug/ThoughtWorks.QRCode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/bin/Debug/ThoughtWorks.QRCode.dll -------------------------------------------------------------------------------- /demo/bin/Debug/demo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/bin/Debug/demo.exe -------------------------------------------------------------------------------- /demo/bin/Debug/demo.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/bin/Debug/demo.exe.config -------------------------------------------------------------------------------- /demo/bin/Debug/demo.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/bin/Debug/demo.pdb -------------------------------------------------------------------------------- /demo/bin/Debug/demo.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/bin/Debug/demo.vshost.exe -------------------------------------------------------------------------------- /demo/bin/Debug/demo.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/bin/Debug/demo.vshost.exe.config -------------------------------------------------------------------------------- /demo/bin/Debug/demo.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/bin/Debug/demo.vshost.exe.manifest -------------------------------------------------------------------------------- /demo/bin/Release/DevComponents.DotNetBar2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/bin/Release/DevComponents.DotNetBar2.dll -------------------------------------------------------------------------------- /demo/bin/Release/DevComponents.DotNetBar2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/bin/Release/DevComponents.DotNetBar2.xml -------------------------------------------------------------------------------- /demo/bin/Release/Sc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/bin/Release/Sc.dll -------------------------------------------------------------------------------- /demo/bin/Release/Sc.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/bin/Release/Sc.pdb -------------------------------------------------------------------------------- /demo/bin/Release/SharpDX.DXGI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/bin/Release/SharpDX.DXGI.dll -------------------------------------------------------------------------------- /demo/bin/Release/SharpDX.Direct2D1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/bin/Release/SharpDX.Direct2D1.dll -------------------------------------------------------------------------------- /demo/bin/Release/SharpDX.Mathematics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/bin/Release/SharpDX.Mathematics.dll -------------------------------------------------------------------------------- /demo/bin/Release/SharpDX.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/bin/Release/SharpDX.dll -------------------------------------------------------------------------------- /demo/bin/Release/ThoughtWorks.QRCode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/bin/Release/ThoughtWorks.QRCode.dll -------------------------------------------------------------------------------- /demo/bin/Release/demo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/bin/Release/demo.exe -------------------------------------------------------------------------------- /demo/bin/Release/demo.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/bin/Release/demo.exe.config -------------------------------------------------------------------------------- /demo/bin/Release/demo.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/bin/Release/demo.pdb -------------------------------------------------------------------------------- /demo/bin/Release/demo.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/bin/Release/demo.vshost.exe -------------------------------------------------------------------------------- /demo/bin/Release/demo.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/bin/Release/demo.vshost.exe.config -------------------------------------------------------------------------------- /demo/bin/Release/demo.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/bin/Release/demo.vshost.exe.manifest -------------------------------------------------------------------------------- /demo/demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/demo.csproj -------------------------------------------------------------------------------- /demo/demo.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/demo.csproj.user -------------------------------------------------------------------------------- /demo/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /demo/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /demo/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /demo/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/obj/Debug/build.force: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/obj/Debug/demo.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/obj/Debug/demo.Form1.resources -------------------------------------------------------------------------------- /demo/obj/Debug/demo.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/obj/Debug/demo.Properties.Resources.resources -------------------------------------------------------------------------------- /demo/obj/Debug/demo.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/obj/Debug/demo.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 342cc7a9c9afc484fd38c0ba45d7eb803592376c 2 | -------------------------------------------------------------------------------- /demo/obj/Debug/demo.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/obj/Debug/demo.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /demo/obj/Debug/demo.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/obj/Debug/demo.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /demo/obj/Debug/demo.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/obj/Debug/demo.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /demo/obj/Debug/demo.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/obj/Debug/demo.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /demo/obj/Debug/demo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/obj/Debug/demo.exe -------------------------------------------------------------------------------- /demo/obj/Debug/demo.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/obj/Debug/demo.pdb -------------------------------------------------------------------------------- /demo/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /demo/obj/Release/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/obj/Release/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /demo/obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/obj/Release/demo.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/obj/Release/demo.Form1.resources -------------------------------------------------------------------------------- /demo/obj/Release/demo.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/obj/Release/demo.Properties.Resources.resources -------------------------------------------------------------------------------- /demo/obj/Release/demo.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/obj/Release/demo.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 9958dd9ede9052522fe234ea415e84e68c9c9eb7 2 | -------------------------------------------------------------------------------- /demo/obj/Release/demo.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/obj/Release/demo.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /demo/obj/Release/demo.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/obj/Release/demo.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /demo/obj/Release/demo.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/obj/Release/demo.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /demo/obj/Release/demo.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/obj/Release/demo.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /demo/obj/Release/demo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/obj/Release/demo.exe -------------------------------------------------------------------------------- /demo/obj/Release/demo.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cymheart/Sc/HEAD/demo/obj/Release/demo.pdb --------------------------------------------------------------------------------