├── ASPNETClientPrint ├── TLClientPrintASPNETCOREMVC │ ├── Views │ │ ├── _ViewStart.cshtml │ │ ├── _ViewImports.cshtml │ │ ├── Home │ │ │ └── Privacy.cshtml │ │ └── Shared │ │ │ ├── _ValidationScriptsPartial.cshtml │ │ │ └── Error.cshtml │ ├── wwwroot │ │ ├── favicon.ico │ │ ├── js │ │ │ └── site.js │ │ └── lib │ │ │ ├── jquery-validation-unobtrusive │ │ │ └── LICENSE.txt │ │ │ ├── jquery-validation │ │ │ └── LICENSE.md │ │ │ └── bootstrap │ │ │ └── LICENSE │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── Models │ │ └── ErrorViewModel.cs │ ├── TLClientPrintASPNETCOREMVC.csproj │ ├── Properties │ │ └── launchSettings.json │ ├── Program.cs │ ├── Controllers │ │ └── HomeController.cs │ └── TLClientPrintASPNETCOREMVC.sln └── TLClientPrintASPNETCORERazor │ ├── Pages │ ├── _ViewStart.cshtml │ ├── _ViewImports.cshtml │ ├── Privacy.cshtml │ ├── Shared │ │ └── _ValidationScriptsPartial.cshtml │ ├── Index.cshtml.cs │ ├── Privacy.cshtml.cs │ ├── Error.cshtml │ └── Error.cshtml.cs │ ├── wwwroot │ ├── favicon.ico │ ├── js │ │ └── site.js │ └── lib │ │ ├── jquery-validation-unobtrusive │ │ └── LICENSE.txt │ │ ├── jquery-validation │ │ └── LICENSE.md │ │ └── bootstrap │ │ └── LICENSE │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── TLClientPrintASPNETCORERazor.csproj │ ├── Properties │ └── launchSettings.json │ ├── Program.cs │ └── TLClientPrintASPNETCORERazor.sln ├── TLWebEditorASPNETCOREMVCDemo ├── TLWebEditorASPNETCOREMVCDemo │ ├── Views │ │ ├── _ViewStart.cshtml │ │ ├── _ViewImports.cshtml │ │ ├── Home │ │ │ └── Privacy.cshtml │ │ └── Shared │ │ │ ├── _ValidationScriptsPartial.cshtml │ │ │ └── Error.cshtml │ ├── wwwroot │ │ ├── favicon.ico │ │ ├── images │ │ │ ├── RFIDTag.png │ │ │ ├── icons │ │ │ │ ├── 2d.png │ │ │ │ ├── Open.png │ │ │ │ ├── Redo.png │ │ │ │ ├── Save.png │ │ │ │ ├── Undo.png │ │ │ │ ├── copy.png │ │ │ │ ├── cut.png │ │ │ │ ├── expr.png │ │ │ │ ├── line.png │ │ │ │ ├── lock.png │ │ │ │ ├── rect.png │ │ │ │ ├── text.png │ │ │ │ ├── ArcText.png │ │ │ │ ├── NewFile.png │ │ │ │ ├── Picture.png │ │ │ │ ├── Print.png │ │ │ │ ├── RFIDTag.png │ │ │ │ ├── barcode.png │ │ │ │ ├── delete.png │ │ │ │ ├── ellipse.png │ │ │ │ ├── paste.png │ │ │ │ ├── pointer.png │ │ │ │ ├── table.png │ │ │ │ ├── unlock.png │ │ │ │ ├── zoom-in.png │ │ │ │ ├── Repeater.png │ │ │ │ ├── shortcuts.png │ │ │ │ ├── zoom-100.png │ │ │ │ ├── zoom-out.png │ │ │ │ ├── BringForward.png │ │ │ │ ├── BringToFront.png │ │ │ │ ├── MaskedText.png │ │ │ │ ├── OutlineText.png │ │ │ │ ├── ResidentFont.png │ │ │ │ ├── SendBackward.png │ │ │ │ ├── SendToBack.png │ │ │ │ └── DesignOptions.png │ │ │ └── barcode_error.png │ │ ├── fonts │ │ │ ├── ZPL Font 0.ttf │ │ │ ├── NativePrinterFontA.ttf │ │ │ ├── NativePrinterFontB.ttf │ │ │ ├── NativePrinterFontS.ttf │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── js │ │ │ └── site.js │ │ └── css │ │ │ ├── gallery.css │ │ │ ├── neoPropGrid.css │ │ │ └── ThermalLabelWebEditor.css │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── Models │ │ └── ErrorViewModel.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Program.cs │ ├── TLWebEditorASPNETCOREMVCDemo.csproj │ └── Controllers │ │ └── HomeController.cs └── TLWebEditorASPNETCOREMVCDemo.sln ├── TLSDKSamplesCS ├── Resources │ ├── PDF.png │ ├── TOXML.png │ ├── help.png │ ├── next.png │ ├── prev.png │ ├── ImageFile.png │ ├── samples_header_out.png │ └── ThermalPrinterIcon32x32.png ├── app.config ├── Properties │ ├── Settings.settings │ └── Settings.Designer.cs ├── Program.cs ├── Product.cs └── TLSDKSamplesCS.sln ├── TLSDKSamplesWPFCS ├── images │ ├── PDF.png │ ├── TOXML.png │ ├── help.png │ ├── next.png │ ├── prev.png │ ├── ImageFile.png │ ├── samples_header_out.png │ └── ThermalPrinterIcon32x32.png ├── app.config ├── Properties │ ├── Settings.settings │ └── Settings.Designer.cs ├── App.xaml ├── App.xaml.cs ├── Product.cs ├── TLSDKSamplesWPFCS.sln └── ImageFormatDialog.xaml ├── TLWebEditorASPNETCORERazorDemo ├── TLWebEditorASPNETCORERazorDemo │ ├── Pages │ │ ├── _ViewStart.cshtml │ │ ├── _ViewImports.cshtml │ │ ├── Privacy.cshtml │ │ ├── Shared │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── Index.cshtml.cs │ │ ├── Privacy.cshtml.cs │ │ ├── Error.cshtml │ │ └── Error.cshtml.cs │ ├── libman.json │ ├── wwwroot │ │ ├── favicon.ico │ │ ├── fonts │ │ │ ├── ZPL Font 0.ttf │ │ │ ├── NativePrinterFontA.ttf │ │ │ ├── NativePrinterFontB.ttf │ │ │ ├── NativePrinterFontS.ttf │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── images │ │ │ ├── RFIDTag.png │ │ │ ├── icons │ │ │ │ ├── 2d.png │ │ │ │ ├── cut.png │ │ │ │ ├── Open.png │ │ │ │ ├── Print.png │ │ │ │ ├── Redo.png │ │ │ │ ├── Save.png │ │ │ │ ├── Undo.png │ │ │ │ ├── copy.png │ │ │ │ ├── expr.png │ │ │ │ ├── line.png │ │ │ │ ├── lock.png │ │ │ │ ├── paste.png │ │ │ │ ├── rect.png │ │ │ │ ├── table.png │ │ │ │ ├── text.png │ │ │ │ ├── ArcText.png │ │ │ │ ├── NewFile.png │ │ │ │ ├── Picture.png │ │ │ │ ├── RFIDTag.png │ │ │ │ ├── Repeater.png │ │ │ │ ├── barcode.png │ │ │ │ ├── delete.png │ │ │ │ ├── ellipse.png │ │ │ │ ├── literal.png │ │ │ │ ├── pointer.png │ │ │ │ ├── unlock.png │ │ │ │ ├── zoom-100.png │ │ │ │ ├── zoom-in.png │ │ │ │ ├── zoom-out.png │ │ │ │ ├── MaskedText.png │ │ │ │ ├── SendToBack.png │ │ │ │ ├── shortcuts.png │ │ │ │ ├── BringForward.png │ │ │ │ ├── BringToFront.png │ │ │ │ ├── DesignOptions.png │ │ │ │ ├── OutlineText.png │ │ │ │ ├── ResidentFont.png │ │ │ │ └── SendBackward.png │ │ │ └── barcode_error.png │ │ ├── js │ │ │ └── site.js │ │ └── css │ │ │ ├── gallery.css │ │ │ ├── neoPropGrid.css │ │ │ └── ThermalLabelWebEditor.css │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── TLWebEditorASPNETCORERazorDemo.csproj │ ├── Properties │ │ └── launchSettings.json │ └── Program.cs └── TLWebEditorASPNETCORERazorDemo.sln ├── TLWindowsEditorWPFDemo ├── Icons │ ├── 2d.png │ ├── Open.png │ ├── Redo.png │ ├── Save.png │ ├── Undo.png │ ├── copy.png │ ├── cut.png │ ├── line.png │ ├── lock.png │ ├── rect.png │ ├── text.png │ ├── ArcText.png │ ├── NewFile.png │ ├── Picture.png │ ├── Print.png │ ├── RFIDTag.png │ ├── Zoom100.png │ ├── arrange.png │ ├── barcode.png │ ├── close.png │ ├── ellipse.png │ ├── export.png │ ├── literal.png │ ├── paste.png │ ├── pointer.png │ ├── table.png │ ├── 16x16 │ │ ├── cut.png │ │ ├── db.png │ │ ├── fx.png │ │ ├── LA-Top.png │ │ ├── ZoomIn.png │ │ ├── copy.png │ │ ├── delete.png │ │ ├── design.png │ │ ├── group.png │ │ ├── help.png │ │ ├── lock.png │ │ ├── redo.png │ │ ├── save.png │ │ ├── undo.png │ │ ├── LA-DistH.png │ │ ├── LA-DistV.png │ │ ├── LA-Left.png │ │ ├── LA-Right.png │ │ ├── Zoom100.png │ │ ├── ZoomOut.png │ │ ├── gallery.png │ │ ├── preview.png │ │ ├── ungroup.png │ │ ├── LA-Bottom.png │ │ ├── LA-CenterH.png │ │ ├── LA-CenterV.png │ │ ├── SameHeight.png │ │ ├── SameWidth.png │ │ ├── SendToBack.png │ │ ├── ZoomToDoc.png │ │ ├── properties.png │ │ ├── BringForward.png │ │ ├── BringToFront.png │ │ └── SendBackward.png │ ├── Repeater.png │ ├── RotView90.png │ ├── ManageFont.png │ ├── OutlineText.png │ ├── Properties.png │ ├── ResidentFont.png │ ├── RotView180.png │ ├── RotView270.png │ ├── RotViewNone.png │ ├── UploadFont.png │ └── DesignOptions.png ├── app.config ├── Properties │ ├── Settings.settings │ └── Settings.Designer.cs ├── App.xaml ├── App.xaml.cs ├── UC │ ├── GalleryUC.xaml │ ├── ColorUIEditorUC.xaml │ ├── ImageFileUIEditorUC.xaml │ ├── ExpressionUIEditorUC.xaml │ └── TableSelector.xaml ├── Dialogs │ ├── DpiDialog.xaml.cs │ ├── ColorDialog.xaml │ ├── ColorDialog.xaml.cs │ └── DpiDialog.xaml └── TLWindowsEditorWPFDemo.sln ├── TLWebEditorLegacyMVCDemo ├── TLWebEditorLegacyMVCDemo │ ├── Views │ │ ├── _ViewStart.cshtml │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ └── Contact.cshtml │ │ └── Shared │ │ │ └── Error.cshtml │ ├── Global.asax │ ├── favicon.ico │ ├── fonts │ │ ├── ZPL Font 0.ttf │ │ ├── NativePrinterFontA.ttf │ │ ├── NativePrinterFontB.ttf │ │ ├── NativePrinterFontS.ttf │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── images │ │ ├── RFIDTag.png │ │ ├── icons │ │ │ ├── 2d.png │ │ │ ├── cut.png │ │ │ ├── Open.png │ │ │ ├── Print.png │ │ │ ├── Redo.png │ │ │ ├── Save.png │ │ │ ├── Undo.png │ │ │ ├── copy.png │ │ │ ├── expr.png │ │ │ ├── line.png │ │ │ ├── lock.png │ │ │ ├── paste.png │ │ │ ├── rect.png │ │ │ ├── table.png │ │ │ ├── text.png │ │ │ ├── ArcText.png │ │ │ ├── NewFile.png │ │ │ ├── Picture.png │ │ │ ├── RFIDTag.png │ │ │ ├── Repeater.png │ │ │ ├── barcode.png │ │ │ ├── delete.png │ │ │ ├── ellipse.png │ │ │ ├── literal.png │ │ │ ├── pointer.png │ │ │ ├── unlock.png │ │ │ ├── zoom-100.png │ │ │ ├── zoom-in.png │ │ │ ├── zoom-out.png │ │ │ ├── MaskedText.png │ │ │ ├── SendToBack.png │ │ │ ├── shortcuts.png │ │ │ ├── BringForward.png │ │ │ ├── BringToFront.png │ │ │ ├── DesignOptions.png │ │ │ ├── OutlineText.png │ │ │ ├── ResidentFont.png │ │ │ └── SendBackward.png │ │ └── barcode_error.png │ ├── Content │ │ ├── main.css │ │ ├── gallery.css │ │ ├── Site.css │ │ ├── neoPropGrid.css │ │ ├── ThermalLabelWebEditor.css │ │ └── ThermalLabelWebEditor-14.0.css │ ├── App_Start │ │ ├── FilterConfig.cs │ │ ├── RouteConfig.cs │ │ └── BundleConfig.cs │ ├── Controllers │ │ └── HomeController.cs │ ├── Global.asax.cs │ ├── Readme.txt │ └── Web.Debug.config └── TLWebEditorLegacyMVCDemo.sln ├── TLWindowsEditorWinFormsDemo ├── Resources │ └── lock.png ├── app.config ├── Properties │ ├── Settings.settings │ └── Settings.Designer.cs ├── Program.cs └── TLWindowsEditorWinFormsDemo.sln ├── TLWindowsEditorWinFormsNetCoreDemo ├── Resources │ └── lock.png ├── Program.cs └── TLWindowsEditorWinFormsNetCoreDemo.sln ├── TLWebEditorWebFormsDemo ├── TLWebEditorWebFormsDemo │ ├── images │ │ ├── RFIDTag.png │ │ ├── icons │ │ │ ├── 2d.png │ │ │ ├── Open.png │ │ │ ├── Print.png │ │ │ ├── Redo.png │ │ │ ├── Save.png │ │ │ ├── Undo.png │ │ │ ├── copy.png │ │ │ ├── cut.png │ │ │ ├── expr.png │ │ │ ├── line.png │ │ │ ├── lock.png │ │ │ ├── paste.png │ │ │ ├── rect.png │ │ │ ├── table.png │ │ │ ├── text.png │ │ │ ├── ArcText.png │ │ │ ├── NewFile.png │ │ │ ├── Picture.png │ │ │ ├── RFIDTag.png │ │ │ ├── barcode.png │ │ │ ├── delete.png │ │ │ ├── ellipse.png │ │ │ ├── literal.png │ │ │ ├── pointer.png │ │ │ ├── unlock.png │ │ │ ├── zoom-in.png │ │ │ ├── MaskedText.png │ │ │ ├── Repeater.png │ │ │ ├── SendToBack.png │ │ │ ├── shortcuts.png │ │ │ ├── zoom-100.png │ │ │ ├── zoom-out.png │ │ │ ├── BringForward.png │ │ │ ├── BringToFront.png │ │ │ ├── OutlineText.png │ │ │ ├── ResidentFont.png │ │ │ ├── SendBackward.png │ │ │ └── DesignOptions.png │ │ └── barcode_error.png │ ├── fonts │ │ ├── ZPL Font 0.ttf │ │ ├── NativePrinterFontA.ttf │ │ ├── NativePrinterFontB.ttf │ │ ├── NativePrinterFontS.ttf │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── ThermalLabelWebEditorHandler.ashx │ ├── css │ │ ├── main.css │ │ ├── gallery.css │ │ ├── neoPropGrid.css │ │ └── ThermalLabelWebEditor-14.0.css │ ├── Content │ │ ├── main.css │ │ ├── gallery.css │ │ ├── neoPropGrid.css │ │ └── ThermalLabelWebEditor.css │ ├── Readme.txt │ ├── Web.Debug.config │ └── packages.config └── TLWebEditorWebFormsDemo.sln ├── License.md ├── TLWindowsEditorWPFNetCoreDemo ├── App.xaml.cs ├── App.xaml ├── AssemblyInfo.cs └── TLWindowsEditorWPFNetCoreDemo.sln ├── LabelsGallery ├── index.xml ├── Avery-94207.tl ├── index-v10.xml └── unicode-rtl-texts.tl └── TLClientPrint.Plugin.CustomPrintDialog └── PrintDialogPlugin.cs /ASPNETClientPrint/TLClientPrintASPNETCOREMVC/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /ASPNETClientPrint/TLClientPrintASPNETCORERazor/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /TLSDKSamplesCS/Resources/PDF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLSDKSamplesCS/Resources/PDF.png -------------------------------------------------------------------------------- /TLSDKSamplesWPFCS/images/PDF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLSDKSamplesWPFCS/images/PDF.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /TLSDKSamplesCS/Resources/TOXML.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLSDKSamplesCS/Resources/TOXML.png -------------------------------------------------------------------------------- /TLSDKSamplesCS/Resources/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLSDKSamplesCS/Resources/help.png -------------------------------------------------------------------------------- /TLSDKSamplesCS/Resources/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLSDKSamplesCS/Resources/next.png -------------------------------------------------------------------------------- /TLSDKSamplesCS/Resources/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLSDKSamplesCS/Resources/prev.png -------------------------------------------------------------------------------- /TLSDKSamplesWPFCS/images/TOXML.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLSDKSamplesWPFCS/images/TOXML.png -------------------------------------------------------------------------------- /TLSDKSamplesWPFCS/images/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLSDKSamplesWPFCS/images/help.png -------------------------------------------------------------------------------- /TLSDKSamplesWPFCS/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLSDKSamplesWPFCS/images/next.png -------------------------------------------------------------------------------- /TLSDKSamplesWPFCS/images/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLSDKSamplesWPFCS/images/prev.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/2d.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } 4 | -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/Open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/Open.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/Redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/Redo.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/Save.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/Undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/Undo.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/copy.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/cut.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/line.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/lock.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/rect.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/text.png -------------------------------------------------------------------------------- /TLSDKSamplesCS/Resources/ImageFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLSDKSamplesCS/Resources/ImageFile.png -------------------------------------------------------------------------------- /TLSDKSamplesWPFCS/images/ImageFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLSDKSamplesWPFCS/images/ImageFile.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/ArcText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/ArcText.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/NewFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/NewFile.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/Picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/Picture.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/Print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/Print.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/RFIDTag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/RFIDTag.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/Zoom100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/Zoom100.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/arrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/arrange.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/barcode.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/close.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/ellipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/ellipse.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/export.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/literal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/literal.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/paste.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/pointer.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/table.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/16x16/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/16x16/cut.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/16x16/db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/16x16/db.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/16x16/fx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/16x16/fx.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/Repeater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/Repeater.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/RotView90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/RotView90.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/16x16/LA-Top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/16x16/LA-Top.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/16x16/ZoomIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/16x16/ZoomIn.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/16x16/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/16x16/copy.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/16x16/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/16x16/delete.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/16x16/design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/16x16/design.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/16x16/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/16x16/group.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/16x16/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/16x16/help.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/16x16/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/16x16/lock.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/16x16/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/16x16/redo.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/16x16/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/16x16/save.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/16x16/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/16x16/undo.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/ManageFont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/ManageFont.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/OutlineText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/OutlineText.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/Properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/Properties.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/ResidentFont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/ResidentFont.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/RotView180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/RotView180.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/RotView270.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/RotView270.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/RotViewNone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/RotViewNone.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/UploadFont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/UploadFont.png -------------------------------------------------------------------------------- /TLSDKSamplesCS/Resources/samples_header_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLSDKSamplesCS/Resources/samples_header_out.png -------------------------------------------------------------------------------- /TLSDKSamplesWPFCS/images/samples_header_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLSDKSamplesWPFCS/images/samples_header_out.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/16x16/LA-DistH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/16x16/LA-DistH.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/16x16/LA-DistV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/16x16/LA-DistV.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/16x16/LA-Left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/16x16/LA-Left.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/16x16/LA-Right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/16x16/LA-Right.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/16x16/Zoom100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/16x16/Zoom100.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/16x16/ZoomOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/16x16/ZoomOut.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/16x16/gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/16x16/gallery.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/16x16/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/16x16/preview.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/16x16/ungroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/16x16/ungroup.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/DesignOptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/DesignOptions.png -------------------------------------------------------------------------------- /TLWindowsEditorWinFormsDemo/Resources/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWinFormsDemo/Resources/lock.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/libman.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "defaultProvider": "cdnjs", 4 | "libraries": [] 5 | } -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/16x16/LA-Bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/16x16/LA-Bottom.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/16x16/LA-CenterH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/16x16/LA-CenterH.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/16x16/LA-CenterV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/16x16/LA-CenterV.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/16x16/SameHeight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/16x16/SameHeight.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/16x16/SameWidth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/16x16/SameWidth.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/16x16/SendToBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/16x16/SendToBack.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/16x16/ZoomToDoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/16x16/ZoomToDoc.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/16x16/properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/16x16/properties.png -------------------------------------------------------------------------------- /TLSDKSamplesCS/Resources/ThermalPrinterIcon32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLSDKSamplesCS/Resources/ThermalPrinterIcon32x32.png -------------------------------------------------------------------------------- /TLSDKSamplesWPFCS/images/ThermalPrinterIcon32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLSDKSamplesWPFCS/images/ThermalPrinterIcon32x32.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/16x16/BringForward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/16x16/BringForward.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/16x16/BringToFront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/16x16/BringToFront.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Icons/16x16/SendBackward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWPFDemo/Icons/16x16/SendBackward.png -------------------------------------------------------------------------------- /TLWindowsEditorWinFormsNetCoreDemo/Resources/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWindowsEditorWinFormsNetCoreDemo/Resources/lock.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="TLWebEditorLegacyMVCDemo.MvcApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /TLSDKSamplesCS/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/favicon.ico -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /ASPNETClientPrint/TLClientPrintASPNETCOREMVC/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/ASPNETClientPrint/TLClientPrintASPNETCOREMVC/wwwroot/favicon.ico -------------------------------------------------------------------------------- /ASPNETClientPrint/TLClientPrintASPNETCORERazor/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/ASPNETClientPrint/TLClientPrintASPNETCORERazor/wwwroot/favicon.ico -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/RFIDTag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/RFIDTag.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/2d.png -------------------------------------------------------------------------------- /TLSDKSamplesWPFCS/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/fonts/ZPL Font 0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/fonts/ZPL Font 0.ttf -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/RFIDTag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/RFIDTag.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/2d.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/cut.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/fonts/ZPL Font 0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/fonts/ZPL Font 0.ttf -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/Open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/Open.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/Print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/Print.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/Redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/Redo.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/Save.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/Undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/Undo.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/copy.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/cut.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/expr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/expr.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/line.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/lock.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/paste.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/rect.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/table.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/text.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/Open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/Open.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/Print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/Print.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/Redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/Redo.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/Save.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/Undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/Undo.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/copy.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/expr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/expr.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/line.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/lock.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/paste.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/rect.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/table.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/text.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/barcode_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/barcode_error.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/ArcText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/ArcText.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/NewFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/NewFile.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/Picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/Picture.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/RFIDTag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/RFIDTag.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/barcode.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/delete.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/ellipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/ellipse.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/literal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/literal.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/pointer.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/unlock.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/zoom-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/zoom-in.png -------------------------------------------------------------------------------- /ASPNETClientPrint/TLClientPrintASPNETCOREMVC/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using TLClientPrintASPNETCOREMVC 2 | @using TLClientPrintASPNETCOREMVC.Models 3 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 4 | -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/barcode_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/barcode_error.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/ArcText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/ArcText.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/NewFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/NewFile.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/Picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/Picture.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/RFIDTag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/RFIDTag.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/Repeater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/Repeater.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/barcode.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/delete.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/ellipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/ellipse.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/literal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/literal.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/pointer.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/unlock.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/zoom-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/zoom-100.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/zoom-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/zoom-in.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/zoom-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/zoom-out.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/MaskedText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/MaskedText.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/Repeater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/Repeater.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/SendToBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/SendToBack.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/shortcuts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/shortcuts.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/zoom-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/zoom-100.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/zoom-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/zoom-out.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/favicon.ico -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/MaskedText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/MaskedText.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/SendToBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/SendToBack.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/shortcuts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/shortcuts.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/fonts/NativePrinterFontA.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/fonts/NativePrinterFontA.ttf -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/fonts/NativePrinterFontB.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/fonts/NativePrinterFontB.ttf -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/fonts/NativePrinterFontS.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/fonts/NativePrinterFontS.ttf -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/BringForward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/BringForward.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/BringToFront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/BringToFront.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/OutlineText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/OutlineText.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/ResidentFont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/ResidentFont.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/SendBackward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/SendBackward.png -------------------------------------------------------------------------------- /ASPNETClientPrint/TLClientPrintASPNETCORERazor/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using TLClientPrintASPNETCORERazor 2 | @namespace TLClientPrintASPNETCORERazor.Pages 3 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 4 | -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/fonts/NativePrinterFontA.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/fonts/NativePrinterFontA.ttf -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/fonts/NativePrinterFontB.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/fonts/NativePrinterFontB.ttf -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/fonts/NativePrinterFontS.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/fonts/NativePrinterFontS.ttf -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/BringForward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/BringForward.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/BringToFront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/BringToFront.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/DesignOptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/DesignOptions.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/OutlineText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/OutlineText.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/ResidentFont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/ResidentFont.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/SendBackward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/images/icons/SendBackward.png -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/DesignOptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/images/icons/DesignOptions.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using TLWebEditorASPNETCOREMVCDemo 2 | @using TLWebEditorASPNETCOREMVCDemo.Models 3 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 4 | -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/favicon.ico -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/ThermalLabelWebEditorHandler.ashx: -------------------------------------------------------------------------------- 1 | <%@ WebHandler Language="C#" CodeBehind="ThermalLabelWebEditorHandler.ashx.cs" Class="TLWebEditorWebFormsDemo.ThermalLabelWebEditorHandler" %> 2 | -------------------------------------------------------------------------------- /ASPNETClientPrint/TLClientPrintASPNETCOREMVC/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Privacy Policy"; 3 | } 4 |

@ViewData["Title"]

5 | 6 |

Use this page to detail your site's privacy policy.

7 | -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/RFIDTag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/RFIDTag.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/2d.png -------------------------------------------------------------------------------- /TLWindowsEditorWinFormsDemo/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/fonts/ZPL Font 0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/fonts/ZPL Font 0.ttf -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/Open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/Open.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/Redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/Redo.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/Save.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/Undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/Undo.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/copy.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/cut.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/expr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/expr.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/line.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/lock.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/rect.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/text.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using TLWebEditorASPNETCORERazorDemo 2 | @namespace TLWebEditorASPNETCORERazorDemo.Pages 3 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 4 | -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Privacy Policy"; 3 | } 4 |

@ViewData["Title"]

5 | 6 |

Use this page to detail your site's privacy policy.

7 | -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/barcode_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/barcode_error.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/ArcText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/ArcText.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/NewFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/NewFile.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/Picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/Picture.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/Print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/Print.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/RFIDTag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/RFIDTag.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/barcode.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/delete.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/ellipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/ellipse.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/paste.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/pointer.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/table.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/unlock.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/zoom-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/zoom-in.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/fonts/ZPL Font 0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/fonts/ZPL Font 0.ttf -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/RFIDTag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/RFIDTag.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/2d.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/cut.png -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/Views/Home/About.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "About"; 3 | } 4 |

@ViewBag.Title.

5 |

@ViewBag.Message

6 | 7 |

Use this area to provide additional information.

8 | -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/Repeater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/Repeater.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/shortcuts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/shortcuts.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/zoom-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/zoom-100.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/zoom-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/zoom-out.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/Open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/Open.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/Print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/Print.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/Redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/Redo.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/Save.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/Undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/Undo.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/copy.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/expr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/expr.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/line.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/lock.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/paste.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/rect.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/table.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/text.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/fonts/NativePrinterFontA.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/fonts/NativePrinterFontA.ttf -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/fonts/NativePrinterFontB.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/fonts/NativePrinterFontB.ttf -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/fonts/NativePrinterFontS.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/fonts/NativePrinterFontS.ttf -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/BringForward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/BringForward.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/BringToFront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/BringToFront.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/MaskedText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/MaskedText.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/OutlineText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/OutlineText.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/ResidentFont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/ResidentFont.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/SendBackward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/SendBackward.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/SendToBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/SendToBack.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/barcode_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/barcode_error.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/ArcText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/ArcText.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/NewFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/NewFile.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/Picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/Picture.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/RFIDTag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/RFIDTag.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/Repeater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/Repeater.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/barcode.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/delete.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/ellipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/ellipse.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/literal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/literal.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/pointer.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/unlock.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/zoom-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/zoom-100.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/zoom-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/zoom-in.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/zoom-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/zoom-out.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/DesignOptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/images/icons/DesignOptions.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/MaskedText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/MaskedText.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/SendToBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/SendToBack.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/shortcuts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/shortcuts.png -------------------------------------------------------------------------------- /ASPNETClientPrint/TLClientPrintASPNETCORERazor/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @model PrivacyModel 3 | @{ 4 | ViewData["Title"] = "Privacy Policy"; 5 | } 6 |

@ViewData["Title"]

7 | 8 |

Use this page to detail your site's privacy policy.

9 | -------------------------------------------------------------------------------- /TLSDKSamplesWPFCS/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/fonts/NativePrinterFontA.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/fonts/NativePrinterFontA.ttf -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/fonts/NativePrinterFontB.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/fonts/NativePrinterFontB.ttf -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/fonts/NativePrinterFontS.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/fonts/NativePrinterFontS.ttf -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/BringForward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/BringForward.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/BringToFront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/BringToFront.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/DesignOptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/DesignOptions.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/OutlineText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/OutlineText.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/ResidentFont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/ResidentFont.png -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/SendBackward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/images/icons/SendBackward.png -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /ASPNETClientPrint/TLClientPrintASPNETCOREMVC/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /ASPNETClientPrint/TLClientPrintASPNETCORERazor/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /ASPNETClientPrint/TLClientPrintASPNETCOREMVC/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @model PrivacyModel 3 | @{ 4 | ViewData["Title"] = "Privacy Policy"; 5 | } 6 |

@ViewData["Title"]

7 | 8 |

Use this page to detail your site's privacy policy.

9 | -------------------------------------------------------------------------------- /ASPNETClientPrint/TLClientPrintASPNETCORERazor/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/ThermalLabel-SDK/HEAD/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /ASPNETClientPrint/TLClientPrintASPNETCOREMVC/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /ASPNETClientPrint/TLClientPrintASPNETCORERazor/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /ASPNETClientPrint/TLClientPrintASPNETCOREMVC/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification 2 | // for details on configuring this project to bundle and minify static web assets. 3 | 4 | // Write your JavaScript code. 5 | -------------------------------------------------------------------------------- /ASPNETClientPrint/TLClientPrintASPNETCORERazor/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification 2 | // for details on configuring this project to bundle and minify static web assets. 3 | 4 | // Write your Javascript code. 5 | -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /TLSDKSamplesCS/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification 2 | // for details on configuring this project to bundle and minify static web assets. 3 | 4 | // Write your JavaScript code. 5 | -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification 2 | // for details on configuring this project to bundle and minify static web assets. 3 | 4 | // Write your Javascript code. 5 | -------------------------------------------------------------------------------- /TLWindowsEditorWinFormsDemo/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/css/main.css: -------------------------------------------------------------------------------- 1 | .circle { 2 | display: inline-block; 3 | height: 40px; 4 | width: 40px; 5 | line-height: 40px; 6 | -moz-border-radius: 20px; 7 | border-radius: 20px; 8 | background-color: #00d8ff; 9 | color: #FFF; 10 | text-align: center; 11 | } 12 | -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/Content/main.css: -------------------------------------------------------------------------------- 1 | .circle { 2 | display: inline-block; 3 | height: 40px; 4 | width: 40px; 5 | line-height: 40px; 6 | -moz-border-radius: 20px; 7 | border-radius: 20px; 8 | background-color: #00d8ff; 9 | color: #FFF; 10 | text-align: center; 11 | } 12 | -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/Content/main.css: -------------------------------------------------------------------------------- 1 | .circle { 2 | display: inline-block; 3 | height: 40px; 4 | width: 40px; 5 | line-height: 40px; 6 | -moz-border-radius: 20px; 7 | border-radius: 20px; 8 | background-color: #00d8ff; 9 | color: #FFF; 10 | text-align: center; 11 | } 12 | -------------------------------------------------------------------------------- /ASPNETClientPrint/TLClientPrintASPNETCOREMVC/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace TLClientPrintASPNETCOREMVC.Models 4 | { 5 | public class ErrorViewModel 6 | { 7 | public string RequestId { get; set; } 8 | 9 | public bool ShowRequestId => !string.IsNullOrEmpty(RequestId); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- 1 | [**ThermalLabel SDK & Visual Label Editors**](https://www.neodynamic.com/products/printing/thermal-label/sdk-vb-net-csharp/) are Commercial products. Licensing model and prices are available [here](https://www.neodynamic.com/products/printing/thermal-label/sdk-vb-net-csharp/buy) 2 | 3 | [EULA is available here](https://neodynamic.com/eula) 4 | -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace TLWebEditorASPNETCOREMVCDemo.Models 4 | { 5 | public class ErrorViewModel 6 | { 7 | public string RequestId { get; set; } 8 | 9 | public bool ShowRequestId => !string.IsNullOrEmpty(RequestId); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/App.xaml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /TLSDKSamplesWPFCS/App.xaml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Error 6 | 7 | 8 |
9 |

Error.

10 |

An error occurred while processing your request.

11 |
12 | 13 | 14 | -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- 1 | using System.Web; 2 | using System.Web.Mvc; 3 | 4 | namespace TLWebEditorLegacyMVCDemo 5 | { 6 | public class FilterConfig 7 | { 8 | public static void RegisterGlobalFilters(GlobalFilterCollection filters) 9 | { 10 | filters.Add(new HandleErrorAttribute()); 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /TLSDKSamplesWPFCS/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Windows; 7 | 8 | namespace ThermalLabelSdkSamplesWPFCS 9 | { 10 | /// 11 | /// Interaction logic for App.xaml 12 | /// 13 | public partial class App : Application 14 | { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Windows; 7 | 8 | namespace TLWindowsEditorWPFDemo 9 | { 10 | /// 11 | /// Interaction logic for App.xaml 12 | /// 13 | public partial class App : Application 14 | { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/Controllers/HomeController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | 7 | namespace TLWebEditorMVCDemo.Controllers 8 | { 9 | public class HomeController : Controller 10 | { 11 | public ActionResult Index() 12 | { 13 | return View(); 14 | } 15 | 16 | } 17 | } -------------------------------------------------------------------------------- /TLWindowsEditorWPFNetCoreDemo/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace TLWindowsEditorWPFDemo 10 | { 11 | /// 12 | /// Interaction logic for App.xaml 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /TLWindowsEditorWPFNetCoreDemo/App.xaml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ASPNETClientPrint/TLClientPrintASPNETCOREMVC/TLClientPrintASPNETCOREMVC.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp3.1 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /ASPNETClientPrint/TLClientPrintASPNETCORERazor/TLClientPrintASPNETCORERazor.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp3.1 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Contact"; 3 | } 4 |

@ViewBag.Title.

5 |

@ViewBag.Message

6 | 7 |
8 | One Microsoft Way
9 | Redmond, WA 98052-6399
10 | P: 11 | 425.555.0100 12 |
13 | 14 |
15 | Support: Support@example.com
16 | Marketing: Marketing@example.com 17 |
-------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/Content/gallery.css: -------------------------------------------------------------------------------- 1 | div.gallery { 2 | width: 100%; 3 | height: 50em; 4 | padding: 10px; 5 | background-color: lightsteelblue; 6 | overflow: auto; 7 | } 8 | 9 | div.gallery-entry { 10 | text-align: center; 11 | margin-right: 10px; 12 | float: left; 13 | width: 220px; 14 | height: 300px; 15 | } 16 | 17 | div.gallery-entry img { 18 | border: 1px solid #9b9a9a; 19 | border-radius: 5px; 20 | background-color: whitesmoke; 21 | padding: 10px; 22 | } 23 | 24 | div.gallery-entry p { 25 | color: white; 26 | } 27 | -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/css/gallery.css: -------------------------------------------------------------------------------- 1 | div.gallery { 2 | width: 100%; 3 | height: 50em; 4 | padding: 10px; 5 | background-color: lightsteelblue; 6 | overflow: auto; 7 | } 8 | 9 | div.gallery-entry { 10 | text-align: center; 11 | margin-right: 10px; 12 | float: left; 13 | width: 220px; 14 | height: 300px; 15 | } 16 | 17 | div.gallery-entry img { 18 | border: 1px solid #9b9a9a; 19 | border-radius: 5px; 20 | background-color: whitesmoke; 21 | padding: 10px; 22 | } 23 | 24 | div.gallery-entry p { 25 | color: white; 26 | } 27 | -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/Content/gallery.css: -------------------------------------------------------------------------------- 1 | div.gallery { 2 | width: 100%; 3 | height: 50em; 4 | padding: 10px; 5 | background-color: lightsteelblue; 6 | overflow: auto; 7 | } 8 | 9 | div.gallery-entry { 10 | text-align: center; 11 | margin-right: 10px; 12 | float: left; 13 | width: 220px; 14 | height: 300px; 15 | } 16 | 17 | div.gallery-entry img { 18 | border: 1px solid #9b9a9a; 19 | border-radius: 5px; 20 | background-color: whitesmoke; 21 | padding: 10px; 22 | } 23 | 24 | div.gallery-entry p { 25 | color: white; 26 | } 27 | -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/css/gallery.css: -------------------------------------------------------------------------------- 1 | div.gallery { 2 | width: 100%; 3 | height: 50em; 4 | padding: 10px; 5 | background-color: lightsteelblue; 6 | overflow: auto; 7 | } 8 | 9 | div.gallery-entry { 10 | text-align: center; 11 | margin-right: 10px; 12 | float: left; 13 | width: 220px; 14 | height: 300px; 15 | } 16 | 17 | div.gallery-entry img { 18 | border: 1px solid #9b9a9a; 19 | border-radius: 5px; 20 | background-color: whitesmoke; 21 | padding: 10px; 22 | } 23 | 24 | div.gallery-entry p { 25 | color: white; 26 | } 27 | -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using Microsoft.AspNetCore.Mvc; 6 | using Microsoft.AspNetCore.Mvc.RazorPages; 7 | using Microsoft.Extensions.Logging; 8 | 9 | namespace TLWebEditorASPNETCORERazorDemo.Pages 10 | { 11 | public class IndexModel : PageModel 12 | { 13 | private readonly ILogger _logger; 14 | 15 | public IndexModel(ILogger logger) 16 | { 17 | _logger = logger; 18 | } 19 | 20 | 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/css/gallery.css: -------------------------------------------------------------------------------- 1 | div.gallery { 2 | width: 100%; 3 | height: 50em; 4 | padding: 10px; 5 | background-color: lightsteelblue; 6 | overflow: auto; 7 | } 8 | 9 | div.gallery-entry { 10 | text-align: center; 11 | margin-right: 10px; 12 | float: left; 13 | width: 220px; 14 | height: 300px; 15 | } 16 | 17 | div.gallery-entry img { 18 | border: 1px solid #9b9a9a; 19 | border-radius: 5px; 20 | background-color: whitesmoke; 21 | padding: 10px; 22 | } 23 | 24 | div.gallery-entry p { 25 | color: white; 26 | } 27 | -------------------------------------------------------------------------------- /TLSDKSamplesCS/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Windows.Forms; 5 | using Neodynamic.SDK.Printing; 6 | 7 | namespace ThermalLabelSdkSamplesCS 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// The main entry point for the application. 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | 18 | Application.EnableVisualStyles(); 19 | Application.SetCompatibleTextRenderingDefault(false); 20 | Application.Run(new MainForm()); 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /TLWindowsEditorWPFNetCoreDemo/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | [assembly: ThemeInfo( 4 | ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located 5 | //(used if a resource is not found in the page, 6 | // or application resource dictionaries) 7 | ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located 8 | //(used if a resource is not found in the page, 9 | // app, or any theme specific resource dictionaries) 10 | )] 11 | -------------------------------------------------------------------------------- /ASPNETClientPrint/TLClientPrintASPNETCORERazor/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using Microsoft.AspNetCore.Mvc; 6 | using Microsoft.AspNetCore.Mvc.RazorPages; 7 | using Microsoft.Extensions.Logging; 8 | 9 | namespace TLClientPrintASPNETCORERazor.Pages 10 | { 11 | public class IndexModel : PageModel 12 | { 13 | private readonly ILogger _logger; 14 | 15 | public IndexModel(ILogger logger) 16 | { 17 | _logger = logger; 18 | } 19 | 20 | public void OnGet() 21 | { 22 | 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /ASPNETClientPrint/TLClientPrintASPNETCORERazor/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using Microsoft.AspNetCore.Mvc; 6 | using Microsoft.AspNetCore.Mvc.RazorPages; 7 | using Microsoft.Extensions.Logging; 8 | 9 | namespace TLClientPrintASPNETCORERazor.Pages 10 | { 11 | public class PrivacyModel : PageModel 12 | { 13 | private readonly ILogger _logger; 14 | 15 | public PrivacyModel(ILogger logger) 16 | { 17 | _logger = logger; 18 | } 19 | 20 | public void OnGet() 21 | { 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /TLWindowsEditorWinFormsDemo/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Windows.Forms; 5 | using System.Threading; 6 | using Neodynamic.SDK.Printing; 7 | using SkiaSharp; 8 | 9 | namespace TLWindowsEditorWinFormsDemo 10 | { 11 | static class Program 12 | { 13 | /// 14 | /// The main entry point for the application. 15 | /// 16 | [STAThread] 17 | static void Main() 18 | { 19 | Application.EnableVisualStyles(); 20 | Application.SetCompatibleTextRenderingDefault(false); 21 | Application.Run(new MainForm()); 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /ASPNETClientPrint/TLClientPrintASPNETCOREMVC/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) .NET Foundation. All rights reserved. 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); you may not use 4 | these files except in compliance with the License. You may obtain a copy of the 5 | License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software distributed 10 | under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR 11 | CONDITIONS OF ANY KIND, either express or implied. See the License for the 12 | specific language governing permissions and limitations under the License. 13 | -------------------------------------------------------------------------------- /ASPNETClientPrint/TLClientPrintASPNETCORERazor/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) .NET Foundation. All rights reserved. 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); you may not use 4 | these files except in compliance with the License. You may obtain a copy of the 5 | License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software distributed 10 | under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR 11 | CONDITIONS OF ANY KIND, either express or implied. See the License for the 12 | specific language governing permissions and limitations under the License. 13 | -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using Microsoft.AspNetCore.Mvc; 6 | using Microsoft.AspNetCore.Mvc.RazorPages; 7 | using Microsoft.Extensions.Logging; 8 | 9 | namespace TLWebEditorASPNETCORERazorDemo.Pages 10 | { 11 | public class PrivacyModel : PageModel 12 | { 13 | private readonly ILogger _logger; 14 | 15 | public PrivacyModel(ILogger logger) 16 | { 17 | _logger = logger; 18 | } 19 | 20 | public void OnGet() 21 | { 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/Global.asax.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | using System.Web.Optimization; 7 | using System.Web.Routing; 8 | 9 | namespace TLWebEditorLegacyMVCDemo 10 | { 11 | public class MvcApplication : System.Web.HttpApplication 12 | { 13 | protected void Application_Start() 14 | { 15 | AreaRegistration.RegisterAllAreas(); 16 | FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters); 17 | RouteConfig.RegisterRoutes(RouteTable.Routes); 18 | BundleConfig.RegisterBundles(BundleTable.Bundles); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /TLWindowsEditorWinFormsNetCoreDemo/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace TLWindowsEditorWinFormsDemo 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// The main entry point for the application. 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.SetHighDpiMode(HighDpiMode.SystemAware); 18 | Application.EnableVisualStyles(); 19 | Application.SetCompatibleTextRenderingDefault(false); 20 | Application.Run(new MainForm()); 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | using System.Web.Routing; 7 | 8 | namespace TLWebEditorLegacyMVCDemo 9 | { 10 | public class RouteConfig 11 | { 12 | public static void RegisterRoutes(RouteCollection routes) 13 | { 14 | routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); 15 | 16 | routes.MapRoute( 17 | name: "Default", 18 | url: "{controller}/{action}/{id}", 19 | defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional } 20 | ); 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /TLSDKSamplesCS/Product.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ThermalLabelSdkSamplesCS 4 | { 5 | /// 6 | /// A sample class for Data Binding 7 | /// 8 | public class Product 9 | { 10 | string _id; 11 | string _name; 12 | 13 | public Product(string id, string name) 14 | { 15 | this.Id = id; 16 | this.Name = name; 17 | } 18 | 19 | public string Id 20 | { 21 | get { return _id; } 22 | set { _id = value; } 23 | } 24 | 25 | public string Name 26 | { 27 | get { return _name; } 28 | set { _name = value; } 29 | } 30 | 31 | 32 | 33 | } 34 | 35 | } 36 | -------------------------------------------------------------------------------- /TLSDKSamplesWPFCS/Product.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace ThermalLabelSdkSamplesWPFCS 7 | { 8 | /// 9 | /// A sample class for Data Binding 10 | /// 11 | public class Product 12 | { 13 | string _id; 14 | string _name; 15 | 16 | public Product(string id, string name) 17 | { 18 | this.Id = id; 19 | this.Name = name; 20 | } 21 | 22 | public string Id 23 | { 24 | get { return _id; } 25 | set { _id = value; } 26 | } 27 | 28 | public string Name 29 | { 30 | get { return _name; } 31 | set { _name = value; } 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/UC/GalleryUC.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /ASPNETClientPrint/TLClientPrintASPNETCOREMVC/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "iisSettings": { 3 | "windowsAuthentication": false, 4 | "anonymousAuthentication": true, 5 | "iisExpress": { 6 | "applicationUrl": "http://localhost:53314", 7 | "sslPort": 44326 8 | } 9 | }, 10 | "profiles": { 11 | "IIS Express": { 12 | "commandName": "IISExpress", 13 | "launchBrowser": true, 14 | "environmentVariables": { 15 | "ASPNETCORE_ENVIRONMENT": "Development" 16 | } 17 | }, 18 | "TLClientPrintASPNETCOREMVC": { 19 | "commandName": "Project", 20 | "launchBrowser": true, 21 | "applicationUrl": "https://localhost:5001;http://localhost:5000", 22 | "environmentVariables": { 23 | "ASPNETCORE_ENVIRONMENT": "Development" 24 | } 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /ASPNETClientPrint/TLClientPrintASPNETCORERazor/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "iisSettings": { 3 | "windowsAuthentication": false, 4 | "anonymousAuthentication": true, 5 | "iisExpress": { 6 | "applicationUrl": "http://localhost:52119", 7 | "sslPort": 44392 8 | } 9 | }, 10 | "profiles": { 11 | "IIS Express": { 12 | "commandName": "IISExpress", 13 | "launchBrowser": true, 14 | "environmentVariables": { 15 | "ASPNETCORE_ENVIRONMENT": "Development" 16 | } 17 | }, 18 | "TLClientPrintASPNETCORERazor": { 19 | "commandName": "Project", 20 | "launchBrowser": true, 21 | "applicationUrl": "https://localhost:5001;http://localhost:5000", 22 | "environmentVariables": { 23 | "ASPNETCORE_ENVIRONMENT": "Development" 24 | } 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "iisSettings": { 3 | "windowsAuthentication": false, 4 | "anonymousAuthentication": true, 5 | "iisExpress": { 6 | "applicationUrl": "http://localhost:62412", 7 | "sslPort": 0 8 | } 9 | }, 10 | "profiles": { 11 | "IIS Express": { 12 | "commandName": "IISExpress", 13 | "launchBrowser": true, 14 | "environmentVariables": { 15 | "ASPNETCORE_ENVIRONMENT": "Development" 16 | } 17 | }, 18 | "TLWebEditorASPNETCOREMVCDemo": { 19 | "commandName": "Project", 20 | "launchBrowser": true, 21 | "environmentVariables": { 22 | "ASPNETCORE_ENVIRONMENT": "Development" 23 | }, 24 | "applicationUrl": "https://localhost:5001;http://localhost:5000" 25 | } 26 | } 27 | } -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net7.0 5 | x86 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "IIS Express": { 4 | "commandName": "IISExpress", 5 | "launchBrowser": true, 6 | "environmentVariables": { 7 | "ASPNETCORE_ENVIRONMENT": "Development" 8 | } 9 | }, 10 | "TLWebEditorASPNETCORERazorDemo": { 11 | "commandName": "Project", 12 | "launchBrowser": true, 13 | "environmentVariables": { 14 | "ASPNETCORE_ENVIRONMENT": "Development" 15 | }, 16 | "applicationUrl": "https://localhost:5001;http://localhost:5000" 17 | } 18 | }, 19 | "iisSettings": { 20 | "windowsAuthentication": false, 21 | "anonymousAuthentication": true, 22 | "iisExpress": { 23 | "applicationUrl": "http://localhost:29615", 24 | "sslPort": 44349 25 | } 26 | } 27 | } -------------------------------------------------------------------------------- /ASPNETClientPrint/TLClientPrintASPNETCOREMVC/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using Microsoft.AspNetCore.Hosting; 6 | using Microsoft.Extensions.Configuration; 7 | using Microsoft.Extensions.Hosting; 8 | using Microsoft.Extensions.Logging; 9 | 10 | namespace TLClientPrintASPNETCOREMVC 11 | { 12 | public class Program 13 | { 14 | public static void Main(string[] args) 15 | { 16 | CreateHostBuilder(args).Build().Run(); 17 | } 18 | 19 | public static IHostBuilder CreateHostBuilder(string[] args) => 20 | Host.CreateDefaultBuilder(args) 21 | .ConfigureWebHostDefaults(webBuilder => 22 | { 23 | webBuilder.UseStartup(); 24 | }); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /ASPNETClientPrint/TLClientPrintASPNETCORERazor/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using Microsoft.AspNetCore.Hosting; 6 | using Microsoft.Extensions.Configuration; 7 | using Microsoft.Extensions.Hosting; 8 | using Microsoft.Extensions.Logging; 9 | 10 | namespace TLClientPrintASPNETCORERazor 11 | { 12 | public class Program 13 | { 14 | public static void Main(string[] args) 15 | { 16 | CreateHostBuilder(args).Build().Run(); 17 | } 18 | 19 | public static IHostBuilder CreateHostBuilder(string[] args) => 20 | Host.CreateDefaultBuilder(args) 21 | .ConfigureWebHostDefaults(webBuilder => 22 | { 23 | webBuilder.UseStartup(); 24 | }); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using Microsoft.AspNetCore.Hosting; 6 | using Microsoft.Extensions.Configuration; 7 | using Microsoft.Extensions.Hosting; 8 | using Microsoft.Extensions.Logging; 9 | 10 | namespace TLWebEditorASPNETCOREMVCDemo 11 | { 12 | public class Program 13 | { 14 | public static void Main(string[] args) 15 | { 16 | CreateHostBuilder(args).Build().Run(); 17 | } 18 | 19 | public static IHostBuilder CreateHostBuilder(string[] args) => 20 | Host.CreateDefaultBuilder(args) 21 | .ConfigureWebHostDefaults(webBuilder => 22 | { 23 | webBuilder.UseStartup(); 24 | }); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using Microsoft.AspNetCore.Hosting; 6 | using Microsoft.Extensions.Configuration; 7 | using Microsoft.Extensions.Hosting; 8 | using Microsoft.Extensions.Logging; 9 | 10 | namespace TLWebEditorASPNETCORERazorDemo 11 | { 12 | public class Program 13 | { 14 | public static void Main(string[] args) 15 | { 16 | CreateHostBuilder(args).Build().Run(); 17 | } 18 | 19 | public static IHostBuilder CreateHostBuilder(string[] args) => 20 | Host.CreateDefaultBuilder(args) 21 | .ConfigureWebHostDefaults(webBuilder => 22 | { 23 | webBuilder.UseStartup(); 24 | }); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /LabelsGallery/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/Content/Site.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding-top: 50px; 3 | padding-bottom: 20px; 4 | } 5 | 6 | /* Set padding to keep content from hitting the edges */ 7 | .body-content { 8 | padding-left: 15px; 9 | padding-right: 15px; 10 | } 11 | 12 | /* Override the default bootstrap behavior where horizontal description lists 13 | will truncate terms that are too long to fit in the left column 14 | */ 15 | .dl-horizontal dt { 16 | white-space: normal; 17 | } 18 | 19 | /* Set width on the form input elements since they're 100% wide by default */ 20 | input, 21 | select, 22 | textarea { 23 | max-width: 280px; 24 | } 25 | 26 | .circle { 27 | display: inline-block; 28 | height: 40px; 29 | width: 40px; 30 | line-height: 40px; 31 | -moz-border-radius: 20px; 32 | border-radius: 20px; 33 | background-color: #00d8ff; 34 | color: #FFF; 35 | text-align: center; 36 | } 37 | -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp3.1 5 | 6 | 7 | 8 | x64 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/UC/ColorUIEditorUC.xaml: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/UC/ImageFileUIEditorUC.xaml: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /ASPNETClientPrint/TLClientPrintASPNETCOREMVC/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | @model ErrorViewModel 2 | @{ 3 | ViewData["Title"] = "Error"; 4 | } 5 | 6 |

Error.

7 |

An error occurred while processing your request.

8 | 9 | @if (Model.ShowRequestId) 10 | { 11 |

12 | Request ID: @Model.RequestId 13 |

14 | } 15 | 16 |

Development Mode

17 |

18 | Swapping to Development environment will display more detailed information about the error that occurred. 19 |

20 |

21 | The Development environment shouldn't be enabled for deployed applications. 22 | It can result in displaying sensitive information from exceptions to end users. 23 | For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development 24 | and restarting the app. 25 |

26 | -------------------------------------------------------------------------------- /ASPNETClientPrint/TLClientPrintASPNETCORERazor/Pages/Error.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @model ErrorModel 3 | @{ 4 | ViewData["Title"] = "Error"; 5 | } 6 | 7 |

Error.

8 |

An error occurred while processing your request.

9 | 10 | @if (Model.ShowRequestId) 11 | { 12 |

13 | Request ID: @Model.RequestId 14 |

15 | } 16 | 17 |

Development Mode

18 |

19 | Swapping to the Development environment displays detailed information about the error that occurred. 20 |

21 |

22 | The Development environment shouldn't be enabled for deployed applications. 23 | It can result in displaying sensitive information from exceptions to end users. 24 | For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development 25 | and restarting the app. 26 |

27 | -------------------------------------------------------------------------------- /ASPNETClientPrint/TLClientPrintASPNETCORERazor/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Diagnostics; 4 | using System.Linq; 5 | using System.Threading.Tasks; 6 | using Microsoft.AspNetCore.Mvc; 7 | using Microsoft.AspNetCore.Mvc.RazorPages; 8 | using Microsoft.Extensions.Logging; 9 | 10 | namespace TLClientPrintASPNETCORERazor.Pages 11 | { 12 | [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)] 13 | public class ErrorModel : PageModel 14 | { 15 | public string RequestId { get; set; } 16 | 17 | public bool ShowRequestId => !string.IsNullOrEmpty(RequestId); 18 | 19 | private readonly ILogger _logger; 20 | 21 | public ErrorModel(ILogger logger) 22 | { 23 | _logger = logger; 24 | } 25 | 26 | public void OnGet() 27 | { 28 | RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier; 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | @model ErrorViewModel 2 | @{ 3 | ViewData["Title"] = "Error"; 4 | } 5 | 6 |

Error.

7 |

An error occurred while processing your request.

8 | 9 | @if (Model.ShowRequestId) 10 | { 11 |

12 | Request ID: @Model.RequestId 13 |

14 | } 15 | 16 |

Development Mode

17 |

18 | Swapping to Development environment will display more detailed information about the error that occurred. 19 |

20 |

21 | The Development environment shouldn't be enabled for deployed applications. 22 | It can result in displaying sensitive information from exceptions to end users. 23 | For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development 24 | and restarting the app. 25 |

26 | -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/Pages/Error.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @model ErrorModel 3 | @{ 4 | ViewData["Title"] = "Error"; 5 | } 6 | 7 |

Error.

8 |

An error occurred while processing your request.

9 | 10 | @if (Model.ShowRequestId) 11 | { 12 |

13 | Request ID: @Model.RequestId 14 |

15 | } 16 | 17 |

Development Mode

18 |

19 | Swapping to the Development environment displays detailed information about the error that occurred. 20 |

21 |

22 | The Development environment shouldn't be enabled for deployed applications. 23 | It can result in displaying sensitive information from exceptions to end users. 24 | For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development 25 | and restarting the app. 26 |

27 | -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Diagnostics; 4 | using System.Linq; 5 | using System.Threading.Tasks; 6 | using Microsoft.AspNetCore.Mvc; 7 | using Microsoft.AspNetCore.Mvc.RazorPages; 8 | using Microsoft.Extensions.Logging; 9 | 10 | namespace TLWebEditorASPNETCORERazorDemo.Pages 11 | { 12 | [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)] 13 | public class ErrorModel : PageModel 14 | { 15 | public string RequestId { get; set; } 16 | 17 | public bool ShowRequestId => !string.IsNullOrEmpty(RequestId); 18 | 19 | private readonly ILogger _logger; 20 | 21 | public ErrorModel(ILogger logger) 22 | { 23 | _logger = logger; 24 | } 25 | 26 | public void OnGet() 27 | { 28 | RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier; 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/UC/ExpressionUIEditorUC.xaml: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/Readme.txt: -------------------------------------------------------------------------------- 1 | ThermalLabel Web Editor (Server) for ASP.NET 2 | ============================================ 3 | 4 | ///////////////////////////////////////////////////////////////////////////////////////////// 5 | VERY IMPORTANT! 6 | 7 | This package requires the Neodynamic.Web.ThermalLabelEditor.Assets package to be installed 8 | at the ASP.NET frontend project where the Visual Web Label Editor will be used. 9 | Please refer to the sample projects https://github.com/neodynamic/ThermalLabel-SDK 10 | ///////////////////////////////////////////////////////////////////////////////////////////// 11 | 12 | 13 | 1. Product details at https://neodynamic.com/products/printing/thermal-label/sdk-vb-net-csharp 14 | 15 | 2. Please download Sample/Demo projects for ASP.NET at https://github.com/neodynamic/ThermalLabel-SDK 16 | 17 | 3. Help Doc https://neodynamic.com/Products/Help/ThermalLabel14.0 18 | 19 | 4. If you need tech assistance, please contact our team at https://neodynamic.com/support 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/Readme.txt: -------------------------------------------------------------------------------- 1 | ThermalLabel Web Editor (Server) for ASP.NET 2 | ============================================ 3 | 4 | ///////////////////////////////////////////////////////////////////////////////////////////// 5 | VERY IMPORTANT! 6 | 7 | This package requires the Neodynamic.Web.ThermalLabelEditor.Assets package to be installed 8 | at the ASP.NET frontend project where the Visual Web Label Editor will be used. 9 | Please refer to the sample projects https://github.com/neodynamic/ThermalLabel-SDK 10 | ///////////////////////////////////////////////////////////////////////////////////////////// 11 | 12 | 13 | 1. Product details at https://neodynamic.com/products/printing/thermal-label/sdk-vb-net-csharp 14 | 15 | 2. Please download Sample/Demo projects for ASP.NET at https://github.com/neodynamic/ThermalLabel-SDK 16 | 17 | 3. Help Doc https://neodynamic.com/Products/Help/ThermalLabel14.0 18 | 19 | 4. If you need tech assistance, please contact our team at https://neodynamic.com/support 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/UC/TableSelector.xaml: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /LabelsGallery/Avery-94207.tl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Dialogs/DpiDialog.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using System.Windows; 5 | using System.Windows.Controls; 6 | using System.Windows.Data; 7 | using System.Windows.Documents; 8 | using System.Windows.Input; 9 | using System.Windows.Media; 10 | using System.Windows.Media.Imaging; 11 | using System.Windows.Shapes; 12 | 13 | namespace TLWindowsEditorWPFDemo 14 | { 15 | /// 16 | /// Interaction logic for DpiDialog.xaml 17 | /// 18 | public partial class DpiDialog : Window 19 | { 20 | public DpiDialog() 21 | { 22 | InitializeComponent(); 23 | } 24 | 25 | public double Dpi 26 | { 27 | get 28 | { 29 | return this.nudDpi.Value.Value; 30 | } 31 | set 32 | { 33 | this.nudDpi.Value = value; 34 | } 35 | } 36 | 37 | private void cmdOK_Click(object sender, RoutedEventArgs e) 38 | { 39 | this.DialogResult = true; 40 | } 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /LabelsGallery/index-v10.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /TLClientPrint.Plugin.CustomPrintDialog/PrintDialogPlugin.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using Neodynamic.SDK.Printing; 6 | using TLClientPrintPlugin; 7 | 8 | namespace TLClientPrint.Plugin.CustomPrintDialog 9 | { 10 | public class PrintDialogPlugin : IPluginPrinterSettings 11 | { 12 | 13 | PrinterSettingsDialog psd = new PrinterSettingsDialog(); 14 | 15 | public int Copies { get; set; } 16 | public PrintOrientation PrintOrientation { get; set; } 17 | 18 | 19 | #region IPluginPrinterSettings Members 20 | 21 | public Neodynamic.SDK.Printing.PrinterSettings CreatePrinterSettings() 22 | { 23 | if (psd.ShowDialog() == System.Windows.Forms.DialogResult.OK) 24 | { 25 | this.Copies = psd.Copies; 26 | this.PrintOrientation = psd.PrintOrientation; 27 | 28 | return psd.PrinterSettings; 29 | } 30 | else 31 | return null; 32 | } 33 | 34 | #endregion 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /ASPNETClientPrint/TLClientPrintASPNETCOREMVC/Controllers/HomeController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Diagnostics; 4 | using System.Linq; 5 | using System.Threading.Tasks; 6 | using Microsoft.AspNetCore.Mvc; 7 | using Microsoft.Extensions.Logging; 8 | using TLClientPrintASPNETCOREMVC.Models; 9 | 10 | namespace TLClientPrintASPNETCOREMVC.Controllers 11 | { 12 | public class HomeController : Controller 13 | { 14 | private readonly ILogger _logger; 15 | 16 | public HomeController(ILogger logger) 17 | { 18 | _logger = logger; 19 | } 20 | 21 | public IActionResult Index() 22 | { 23 | return View(); 24 | } 25 | 26 | public IActionResult Privacy() 27 | { 28 | return View(); 29 | } 30 | 31 | [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)] 32 | public IActionResult Error() 33 | { 34 | return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier }); 35 | } 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Dialogs/ColorDialog.xaml: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Dialogs/ColorDialog.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using System.Windows; 5 | using System.Windows.Controls; 6 | using System.Windows.Data; 7 | using System.Windows.Documents; 8 | using System.Windows.Input; 9 | using System.Windows.Media; 10 | using System.Windows.Media.Imaging; 11 | using System.Windows.Shapes; 12 | 13 | namespace TLWindowsEditorWPFDemo 14 | { 15 | /// 16 | /// Interaction logic for ColorDialog.xaml 17 | /// 18 | public partial class ColorDialog : Window 19 | { 20 | public ColorDialog() 21 | { 22 | InitializeComponent(); 23 | } 24 | 25 | 26 | public string ColorHex 27 | { 28 | get 29 | { 30 | return this.colorCanvas1.HexadecimalString; 31 | } 32 | set 33 | { 34 | this.colorCanvas1.HexadecimalString = value; 35 | } 36 | } 37 | 38 | private void cmdOK_Click(object sender, RoutedEventArgs e) 39 | { 40 | this.DialogResult = true; 41 | } 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/Controllers/HomeController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Diagnostics; 4 | using System.Linq; 5 | using System.Threading.Tasks; 6 | using Microsoft.AspNetCore.Mvc; 7 | using Microsoft.Extensions.Logging; 8 | using TLWebEditorASPNETCOREMVCDemo.Models; 9 | 10 | namespace TLWebEditorASPNETCOREMVCDemo.Controllers 11 | { 12 | public class HomeController : Controller 13 | { 14 | private readonly ILogger _logger; 15 | 16 | public HomeController(ILogger logger) 17 | { 18 | _logger = logger; 19 | } 20 | 21 | public IActionResult Index() 22 | { 23 | return View(); 24 | } 25 | 26 | public IActionResult Privacy() 27 | { 28 | return View(); 29 | } 30 | 31 | [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)] 32 | public IActionResult Error() 33 | { 34 | return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier }); 35 | } 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /TLSDKSamplesCS/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace TLSDKSamplesCS.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.5.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /TLSDKSamplesWPFCS/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace TLSDKSamplesWPFCS.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.5.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /TLSDKSamplesCS/TLSDKSamplesCS.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.30320.27 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TLSDKSamplesCS", "TLSDKSamplesCS.csproj", "{0B8A10AB-32B4-41FD-BAE1-7239AD439226}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {0B8A10AB-32B4-41FD-BAE1-7239AD439226}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {0B8A10AB-32B4-41FD-BAE1-7239AD439226}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {0B8A10AB-32B4-41FD-BAE1-7239AD439226}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {0B8A10AB-32B4-41FD-BAE1-7239AD439226}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {656DF220-12A4-4857-A179-05E169C340B7} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace TLWindowsEditorWPFDemo.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.8.1.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /TLWindowsEditorWinFormsDemo/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace TLWindowsEditorWinFormsDemo.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.5.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /TLSDKSamplesWPFCS/TLSDKSamplesWPFCS.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.30320.27 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TLSDKSamplesWPFCS", "TLSDKSamplesWPFCS.csproj", "{06D6FB6A-14E1-48A4-9886-3D96C0DFFB76}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {06D6FB6A-14E1-48A4-9886-3D96C0DFFB76}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {06D6FB6A-14E1-48A4-9886-3D96C0DFFB76}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {06D6FB6A-14E1-48A4-9886-3D96C0DFFB76}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {06D6FB6A-14E1-48A4-9886-3D96C0DFFB76}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {CBC26E2C-4551-4371-90CB-F59A6E8C7228} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/css/neoPropGrid.css: -------------------------------------------------------------------------------- 1 | .neoPropGrid{ 2 | font-size:smaller; 3 | } 4 | 5 | .my-custom-scrollbar { 6 | position: relative; 7 | height: 50em; 8 | overflow: auto; 9 | } 10 | 11 | .table-wrapper-scroll-y { 12 | display: block; 13 | } 14 | 15 | .checkbox label:after { 16 | content: ''; 17 | display: table; 18 | clear: both; 19 | } 20 | 21 | .checkbox .cr { 22 | position: relative; 23 | display: inline-block; 24 | border: 1px solid #a9a9a9; 25 | border-radius: .25em; 26 | width: 1.3em; 27 | height: 1.3em; 28 | float: left; 29 | margin-right: .5em; 30 | } 31 | 32 | .checkbox .cr .cr-icon { 33 | position: absolute; 34 | font-size: .8em; 35 | line-height: 0; 36 | top: 50%; 37 | left: 15%; 38 | } 39 | 40 | .checkbox label input[type="checkbox"] { 41 | display: none; 42 | } 43 | 44 | .checkbox label input[type="checkbox"] + .cr > .cr-icon { 45 | opacity: 0; 46 | } 47 | 48 | .checkbox label input[type="checkbox"]:checked + .cr > .cr-icon { 49 | opacity: 1; 50 | } 51 | 52 | .checkbox label input[type="checkbox"]:disabled + .cr { 53 | opacity: .5; 54 | } 55 | -------------------------------------------------------------------------------- /ASPNETClientPrint/TLClientPrintASPNETCOREMVC/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | ===================== 3 | 4 | Copyright Jörn Zaefferer 5 | 6 | Permission is hereby granted, free of charge, to any person obtaining a copy 7 | of this software and associated documentation files (the "Software"), to deal 8 | in the Software without restriction, including without limitation the rights 9 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | copies of the Software, and to permit persons to whom the Software is 11 | furnished to do so, subject to the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be included in 14 | all copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 22 | THE SOFTWARE. 23 | -------------------------------------------------------------------------------- /ASPNETClientPrint/TLClientPrintASPNETCORERazor/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | ===================== 3 | 4 | Copyright Jörn Zaefferer 5 | 6 | Permission is hereby granted, free of charge, to any person obtaining a copy 7 | of this software and associated documentation files (the "Software"), to deal 8 | in the Software without restriction, including without limitation the rights 9 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | copies of the Software, and to permit persons to whom the Software is 11 | furnished to do so, subject to the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be included in 14 | all copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 22 | THE SOFTWARE. 23 | -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/Content/neoPropGrid.css: -------------------------------------------------------------------------------- 1 | .neoPropGrid{ 2 | font-size:smaller; 3 | } 4 | 5 | .my-custom-scrollbar { 6 | position: relative; 7 | height: 50em; 8 | overflow: auto; 9 | } 10 | 11 | .table-wrapper-scroll-y { 12 | display: block; 13 | } 14 | 15 | .checkbox label:after { 16 | content: ''; 17 | display: table; 18 | clear: both; 19 | } 20 | 21 | .checkbox .cr { 22 | position: relative; 23 | display: inline-block; 24 | border: 1px solid #a9a9a9; 25 | border-radius: .25em; 26 | width: 1.3em; 27 | height: 1.3em; 28 | float: left; 29 | margin-right: .5em; 30 | } 31 | 32 | .checkbox .cr .cr-icon { 33 | position: absolute; 34 | font-size: .8em; 35 | line-height: 0; 36 | top: 50%; 37 | left: 15%; 38 | } 39 | 40 | .checkbox label input[type="checkbox"] { 41 | display: none; 42 | } 43 | 44 | .checkbox label input[type="checkbox"] + .cr > .cr-icon { 45 | opacity: 0; 46 | } 47 | 48 | .checkbox label input[type="checkbox"]:checked + .cr > .cr-icon { 49 | opacity: 1; 50 | } 51 | 52 | .checkbox label input[type="checkbox"]:disabled + .cr { 53 | opacity: .5; 54 | } 55 | -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/Content/neoPropGrid.css: -------------------------------------------------------------------------------- 1 | .neoPropGrid{ 2 | font-size:smaller; 3 | } 4 | 5 | .my-custom-scrollbar { 6 | position: relative; 7 | height: 50em; 8 | overflow: auto; 9 | } 10 | 11 | .table-wrapper-scroll-y { 12 | display: block; 13 | } 14 | 15 | .checkbox label:after { 16 | content: ''; 17 | display: table; 18 | clear: both; 19 | } 20 | 21 | .checkbox .cr { 22 | position: relative; 23 | display: inline-block; 24 | border: 1px solid #a9a9a9; 25 | border-radius: .25em; 26 | width: 1.3em; 27 | height: 1.3em; 28 | float: left; 29 | margin-right: .5em; 30 | } 31 | 32 | .checkbox .cr .cr-icon { 33 | position: absolute; 34 | font-size: .8em; 35 | line-height: 0; 36 | top: 50%; 37 | left: 15%; 38 | } 39 | 40 | .checkbox label input[type="checkbox"] { 41 | display: none; 42 | } 43 | 44 | .checkbox label input[type="checkbox"] + .cr > .cr-icon { 45 | opacity: 0; 46 | } 47 | 48 | .checkbox label input[type="checkbox"]:checked + .cr > .cr-icon { 49 | opacity: 1; 50 | } 51 | 52 | .checkbox label input[type="checkbox"]:disabled + .cr { 53 | opacity: .5; 54 | } 55 | -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/TLWindowsEditorWPFDemo.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.30717.126 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TLWindowsEditorWPFDemo", "TLWindowsEditorWPFDemo.csproj", "{05DCA5F2-C656-406F-9458-DCBF129B4CDD}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {05DCA5F2-C656-406F-9458-DCBF129B4CDD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {05DCA5F2-C656-406F-9458-DCBF129B4CDD}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {05DCA5F2-C656-406F-9458-DCBF129B4CDD}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {05DCA5F2-C656-406F-9458-DCBF129B4CDD}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {B1862C9E-4FA3-4451-830C-3A6E5D85100F} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /LabelsGallery/unicode-rtl-texts.tl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/css/neoPropGrid.css: -------------------------------------------------------------------------------- 1 | .neoPropGrid{ 2 | font-size:smaller; 3 | } 4 | 5 | .my-custom-scrollbar { 6 | position: relative; 7 | height: 50em; 8 | overflow: auto; 9 | } 10 | 11 | .table-wrapper-scroll-y { 12 | display: block; 13 | } 14 | 15 | .checkbox label:after { 16 | content: ''; 17 | display: table; 18 | clear: both; 19 | } 20 | 21 | .checkbox .cr { 22 | position: relative; 23 | display: inline-block; 24 | border: 1px solid #a9a9a9; 25 | border-radius: .25em; 26 | width: 1.3em; 27 | height: 1.3em; 28 | float: left; 29 | margin-right: .5em; 30 | } 31 | 32 | .checkbox .cr .cr-icon { 33 | position: absolute; 34 | font-size: .8em; 35 | line-height: 0; 36 | top: 50%; 37 | left: 15%; 38 | } 39 | 40 | .checkbox label input[type="checkbox"] { 41 | display: none; 42 | } 43 | 44 | .checkbox label input[type="checkbox"] + .cr > .cr-icon { 45 | opacity: 0; 46 | } 47 | 48 | .checkbox label input[type="checkbox"]:checked + .cr > .cr-icon { 49 | opacity: 1; 50 | } 51 | 52 | .checkbox label input[type="checkbox"]:disabled + .cr { 53 | opacity: .5; 54 | } 55 | -------------------------------------------------------------------------------- /TLWindowsEditorWPFDemo/Dialogs/DpiDialog.xaml: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/css/neoPropGrid.css: -------------------------------------------------------------------------------- 1 | .neoPropGrid{ 2 | font-size:smaller; 3 | } 4 | 5 | .my-custom-scrollbar { 6 | position: relative; 7 | height: 50em; 8 | overflow: auto; 9 | } 10 | 11 | .table-wrapper-scroll-y { 12 | display: block; 13 | } 14 | 15 | .checkbox label:after { 16 | content: ''; 17 | display: table; 18 | clear: both; 19 | } 20 | 21 | .checkbox .cr { 22 | position: relative; 23 | display: inline-block; 24 | border: 1px solid #a9a9a9; 25 | border-radius: .25em; 26 | width: 1.3em; 27 | height: 1.3em; 28 | float: left; 29 | margin-right: .5em; 30 | } 31 | 32 | .checkbox .cr .cr-icon { 33 | position: absolute; 34 | font-size: .8em; 35 | line-height: 0; 36 | top: 50%; 37 | left: 15%; 38 | } 39 | 40 | .checkbox label input[type="checkbox"] { 41 | display: none; 42 | } 43 | 44 | .checkbox label input[type="checkbox"] + .cr > .cr-icon { 45 | opacity: 0; 46 | } 47 | 48 | .checkbox label input[type="checkbox"]:checked + .cr > .cr-icon { 49 | opacity: 1; 50 | } 51 | 52 | .checkbox label input[type="checkbox"]:disabled + .cr { 53 | opacity: .5; 54 | } 55 | -------------------------------------------------------------------------------- /ASPNETClientPrint/TLClientPrintASPNETCOREMVC/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2011-2018 Twitter, Inc. 4 | Copyright (c) 2011-2018 The Bootstrap Authors 5 | 6 | Permission is hereby granted, free of charge, to any person obtaining a copy 7 | of this software and associated documentation files (the "Software"), to deal 8 | in the Software without restriction, including without limitation the rights 9 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | copies of the Software, and to permit persons to whom the Software is 11 | furnished to do so, subject to the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be included in 14 | all copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 22 | THE SOFTWARE. 23 | -------------------------------------------------------------------------------- /ASPNETClientPrint/TLClientPrintASPNETCORERazor/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2011-2018 Twitter, Inc. 4 | Copyright (c) 2011-2018 The Bootstrap Authors 5 | 6 | Permission is hereby granted, free of charge, to any person obtaining a copy 7 | of this software and associated documentation files (the "Software"), to deal 8 | in the Software without restriction, including without limitation the rights 9 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | copies of the Software, and to permit persons to whom the Software is 11 | furnished to do so, subject to the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be included in 14 | all copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 22 | THE SOFTWARE. 23 | -------------------------------------------------------------------------------- /TLWindowsEditorWinFormsDemo/TLWindowsEditorWinFormsDemo.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.30320.27 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TLWindowsEditorWinFormsDemo", "TLWindowsEditorWinFormsDemo.csproj", "{7EA03266-0A6C-4F88-A49E-06945E743D49}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {7EA03266-0A6C-4F88-A49E-06945E743D49}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {7EA03266-0A6C-4F88-A49E-06945E743D49}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {7EA03266-0A6C-4F88-A49E-06945E743D49}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {7EA03266-0A6C-4F88-A49E-06945E743D49}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {D8C6DD7D-D674-4260-A641-303A06039F88} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.30320.27 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TLWebEditorWebFormsDemo", "TLWebEditorWebFormsDemo\TLWebEditorWebFormsDemo.csproj", "{FC105F1B-A0AA-40C8-8FFE-17F5B1E608A3}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {FC105F1B-A0AA-40C8-8FFE-17F5B1E608A3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {FC105F1B-A0AA-40C8-8FFE-17F5B1E608A3}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {FC105F1B-A0AA-40C8-8FFE-17F5B1E608A3}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {FC105F1B-A0AA-40C8-8FFE-17F5B1E608A3}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {B9128FA3-51F0-4EFF-8193-DDA3F8B4133A} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.30320.27 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TLWebEditorLegacyMVCDemo", "TLWebEditorLegacyMVCDemo\TLWebEditorLegacyMVCDemo.csproj", "{CB8FE068-F212-44A3-B981-66E6B18E407A}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {CB8FE068-F212-44A3-B981-66E6B18E407A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {CB8FE068-F212-44A3-B981-66E6B18E407A}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {CB8FE068-F212-44A3-B981-66E6B18E407A}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {CB8FE068-F212-44A3-B981-66E6B18E407A}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {2149CE6B-2CF1-40D2-B004-37D8C8087A43} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /TLWindowsEditorWPFNetCoreDemo/TLWindowsEditorWPFNetCoreDemo.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.30717.126 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TLWindowsEditorWPFNetCoreDemo", "TLWindowsEditorWPFNetCoreDemo.csproj", "{447D07AD-CC6E-46C9-818D-163CDAEF85E6}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {447D07AD-CC6E-46C9-818D-163CDAEF85E6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {447D07AD-CC6E-46C9-818D-163CDAEF85E6}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {447D07AD-CC6E-46C9-818D-163CDAEF85E6}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {447D07AD-CC6E-46C9-818D-163CDAEF85E6}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {99CE6A19-DB89-4345-940F-7732792EA4EF} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ASPNETClientPrint/TLClientPrintASPNETCOREMVC/TLClientPrintASPNETCOREMVC.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.30320.27 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TLClientPrintASPNETCOREMVC", "TLClientPrintASPNETCOREMVC.csproj", "{74993A4F-0C75-4FCB-9C7B-A2CA59AFC449}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {74993A4F-0C75-4FCB-9C7B-A2CA59AFC449}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {74993A4F-0C75-4FCB-9C7B-A2CA59AFC449}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {74993A4F-0C75-4FCB-9C7B-A2CA59AFC449}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {74993A4F-0C75-4FCB-9C7B-A2CA59AFC449}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {DD2C1EAF-D8C8-4ECD-8C46-837384BCABA3} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ASPNETClientPrint/TLClientPrintASPNETCORERazor/TLClientPrintASPNETCORERazor.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.30320.27 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TLClientPrintASPNETCORERazor", "TLClientPrintASPNETCORERazor.csproj", "{13BC9E74-F4B4-4DC9-A2AC-DEEA1548E227}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {13BC9E74-F4B4-4DC9-A2AC-DEEA1548E227}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {13BC9E74-F4B4-4DC9-A2AC-DEEA1548E227}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {13BC9E74-F4B4-4DC9-A2AC-DEEA1548E227}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {13BC9E74-F4B4-4DC9-A2AC-DEEA1548E227}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {494402E6-44D9-4BDD-8DC2-91097990A2B9} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /TLWindowsEditorWinFormsNetCoreDemo/TLWindowsEditorWinFormsNetCoreDemo.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.30320.27 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TLWindowsEditorWinFormsNetCoreDemo", "TLWindowsEditorWinFormsNetCoreDemo.csproj", "{64023BF2-421B-4D5F-9525-52FA35984899}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {64023BF2-421B-4D5F-9525-52FA35984899}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {64023BF2-421B-4D5F-9525-52FA35984899}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {64023BF2-421B-4D5F-9525-52FA35984899}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {64023BF2-421B-4D5F-9525-52FA35984899}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {A0E9C8C1-859B-4B35-A1D3-04CC3CFA377A} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.30320.27 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TLWebEditorASPNETCOREMVCDemo", "TLWebEditorASPNETCOREMVCDemo\TLWebEditorASPNETCOREMVCDemo.csproj", "{962470F5-F5CE-46BD-826D-7A8D7A040499}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {962470F5-F5CE-46BD-826D-7A8D7A040499}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {962470F5-F5CE-46BD-826D-7A8D7A040499}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {962470F5-F5CE-46BD-826D-7A8D7A040499}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {962470F5-F5CE-46BD-826D-7A8D7A040499}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {B03F40BC-B20B-499C-9D46-95CE76E997F8} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/Content/ThermalLabelWebEditor.css: -------------------------------------------------------------------------------- 1 | /* 2 | * ThermalLabel Web Editor Add-on 3 | * ThermalLabelWebEditor-14.0.css 4 | * @author Neodynamic (http://neodynamic.com/) 5 | * Contact: https://neodynamic.com/support 6 | * WebPage: https://neodynamic.com/products/printing/thermal-label/web-editor/ 7 | */ 8 | 9 | #thermalLabelWebEditor { 10 | --workspace-background-color: rgb(205, 209, 214); 11 | --label-document-frame-background-image: none; 12 | --label-document-frame-background-color: #ffffff; 13 | --label-document-frame-border-color: #a9a9a9; 14 | --label-document-frame-corner-radius: 10px; 15 | --grid-color: #cccccc; 16 | --item-design-time-border-color: #d3d3d364; 17 | --item-tooltip-color: #000000; 18 | --item-tooltip-background-color: #f5f5f5; 19 | --item-tooltip-border-color: #808080; 20 | --adorner-handler-background-color: #00ffff; 21 | --adorner-frame-border-color: #000000; 22 | --adorner-out-of-label-border-color: #ff0000; 23 | --repeater-item-color: #00bfff; 24 | --rulers-background-color: #ffffff; 25 | --rulers-corner-background-color: #cccccc; 26 | --rulers-selection-background-color: #cccccc; 27 | --rulers-text-color: #000000; 28 | --label-document-margin-color: #add8e6; 29 | } 30 | -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/css/ThermalLabelWebEditor-14.0.css: -------------------------------------------------------------------------------- 1 | /* 2 | * ThermalLabel Web Editor Add-on 3 | * ThermalLabelWebEditor-14.0.css 4 | * @author Neodynamic (http://neodynamic.com/) 5 | * Contact: https://neodynamic.com/support 6 | * WebPage: https://neodynamic.com/products/printing/thermal-label/web-editor/ 7 | */ 8 | 9 | #thermalLabelWebEditor { 10 | --workspace-background-color: rgb(205, 209, 214); 11 | --label-document-frame-background-image: none; 12 | --label-document-frame-background-color: #ffffff; 13 | --label-document-frame-border-color: #a9a9a9; 14 | --label-document-frame-corner-radius: 10px; 15 | --grid-color: #cccccc; 16 | --item-design-time-border-color: #d3d3d364; 17 | --item-tooltip-color: #000000; 18 | --item-tooltip-background-color: #f5f5f5; 19 | --item-tooltip-border-color: #808080; 20 | --adorner-handler-background-color: #00ffff; 21 | --adorner-frame-border-color: #000000; 22 | --adorner-out-of-label-border-color: #ff0000; 23 | --repeater-item-color: #00bfff; 24 | --rulers-background-color: #ffffff; 25 | --rulers-corner-background-color: #cccccc; 26 | --rulers-selection-background-color: #cccccc; 27 | --rulers-text-color: #000000; 28 | --label-document-margin-color: #add8e6; 29 | } 30 | -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/Content/ThermalLabelWebEditor.css: -------------------------------------------------------------------------------- 1 | /* 2 | * ThermalLabel Web Editor Add-on 3 | * ThermalLabelWebEditor-14.0.css 4 | * @author Neodynamic (http://neodynamic.com/) 5 | * Contact: https://neodynamic.com/support 6 | * WebPage: https://neodynamic.com/products/printing/thermal-label/web-editor/ 7 | */ 8 | 9 | #thermalLabelWebEditor { 10 | --workspace-background-color: rgb(205, 209, 214); 11 | --label-document-frame-background-image: none; 12 | --label-document-frame-background-color: #ffffff; 13 | --label-document-frame-border-color: #a9a9a9; 14 | --label-document-frame-corner-radius: 10px; 15 | --grid-color: #cccccc; 16 | --item-design-time-border-color: #d3d3d364; 17 | --item-tooltip-color: #000000; 18 | --item-tooltip-background-color: #f5f5f5; 19 | --item-tooltip-border-color: #808080; 20 | --adorner-handler-background-color: #00ffff; 21 | --adorner-frame-border-color: #000000; 22 | --adorner-out-of-label-border-color: #ff0000; 23 | --repeater-item-color: #00bfff; 24 | --rulers-background-color: #ffffff; 25 | --rulers-corner-background-color: #cccccc; 26 | --rulers-selection-background-color: #cccccc; 27 | --rulers-text-color: #000000; 28 | --label-document-margin-color: #add8e6; 29 | } 30 | -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.30320.27 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TLWebEditorASPNETCORERazorDemo", "TLWebEditorASPNETCORERazorDemo\TLWebEditorASPNETCORERazorDemo.csproj", "{E0D3FB10-6C35-476D-9120-A3CAE6DEE138}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {E0D3FB10-6C35-476D-9120-A3CAE6DEE138}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {E0D3FB10-6C35-476D-9120-A3CAE6DEE138}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {E0D3FB10-6C35-476D-9120-A3CAE6DEE138}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {E0D3FB10-6C35-476D-9120-A3CAE6DEE138}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {51E869E4-39C2-46EF-967F-8DED07332A78} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/Content/ThermalLabelWebEditor-14.0.css: -------------------------------------------------------------------------------- 1 | /* 2 | * ThermalLabel Web Editor Add-on 3 | * ThermalLabelWebEditor-14.0.css 4 | * @author Neodynamic (http://neodynamic.com/) 5 | * Contact: https://neodynamic.com/support 6 | * WebPage: https://neodynamic.com/products/printing/thermal-label/web-editor/ 7 | */ 8 | 9 | #thermalLabelWebEditor { 10 | --workspace-background-color: rgb(205, 209, 214); 11 | --label-document-frame-background-image: none; 12 | --label-document-frame-background-color: #ffffff; 13 | --label-document-frame-border-color: #a9a9a9; 14 | --label-document-frame-corner-radius: 10px; 15 | --grid-color: #cccccc; 16 | --item-design-time-border-color: #d3d3d364; 17 | --item-tooltip-color: #000000; 18 | --item-tooltip-background-color: #f5f5f5; 19 | --item-tooltip-border-color: #808080; 20 | --adorner-handler-background-color: #00ffff; 21 | --adorner-frame-border-color: #000000; 22 | --adorner-out-of-label-border-color: #ff0000; 23 | --repeater-item-color: #00bfff; 24 | --rulers-background-color: #ffffff; 25 | --rulers-corner-background-color: #cccccc; 26 | --rulers-selection-background-color: #cccccc; 27 | --rulers-text-color: #000000; 28 | --label-document-margin-color: #add8e6; 29 | } 30 | -------------------------------------------------------------------------------- /TLWebEditorASPNETCOREMVCDemo/TLWebEditorASPNETCOREMVCDemo/wwwroot/css/ThermalLabelWebEditor.css: -------------------------------------------------------------------------------- 1 | /* 2 | * ThermalLabel Web Editor Add-on 3 | * ThermalLabelWebEditor-14.0.css 4 | * @author Neodynamic (http://neodynamic.com/) 5 | * Contact: https://neodynamic.com/support 6 | * WebPage: https://neodynamic.com/products/printing/thermal-label/web-editor/ 7 | */ 8 | 9 | #thermalLabelWebEditor { 10 | --workspace-background-color: rgb(205, 209, 214); 11 | --label-document-frame-background-image: none; 12 | --label-document-frame-background-color: #ffffff; 13 | --label-document-frame-border-color: #a9a9a9; 14 | --label-document-frame-corner-radius: 10px; 15 | --grid-color: #cccccc; 16 | --item-design-time-border-color: #d3d3d364; 17 | --item-tooltip-color: #000000; 18 | --item-tooltip-background-color: #f5f5f5; 19 | --item-tooltip-border-color: #808080; 20 | --adorner-handler-background-color: #00ffff; 21 | --adorner-frame-border-color: #000000; 22 | --adorner-out-of-label-border-color: #ff0000; 23 | --repeater-item-color: #00bfff; 24 | --rulers-background-color: #ffffff; 25 | --rulers-corner-background-color: #cccccc; 26 | --rulers-selection-background-color: #cccccc; 27 | --rulers-text-color: #000000; 28 | --label-document-margin-color: #add8e6; 29 | } 30 | -------------------------------------------------------------------------------- /TLWebEditorASPNETCORERazorDemo/TLWebEditorASPNETCORERazorDemo/wwwroot/css/ThermalLabelWebEditor.css: -------------------------------------------------------------------------------- 1 | /* 2 | * ThermalLabel Web Editor Add-on 3 | * ThermalLabelWebEditor-14.0.css 4 | * @author Neodynamic (http://neodynamic.com/) 5 | * Contact: https://neodynamic.com/support 6 | * WebPage: https://neodynamic.com/products/printing/thermal-label/web-editor/ 7 | */ 8 | 9 | #thermalLabelWebEditor { 10 | --workspace-background-color: rgb(205, 209, 214); 11 | --label-document-frame-background-image: none; 12 | --label-document-frame-background-color: #ffffff; 13 | --label-document-frame-border-color: #a9a9a9; 14 | --label-document-frame-corner-radius: 10px; 15 | --grid-color: #cccccc; 16 | --item-design-time-border-color: #d3d3d364; 17 | --item-tooltip-color: #000000; 18 | --item-tooltip-background-color: #f5f5f5; 19 | --item-tooltip-border-color: #808080; 20 | --adorner-handler-background-color: #00ffff; 21 | --adorner-frame-border-color: #000000; 22 | --adorner-out-of-label-border-color: #ff0000; 23 | --repeater-item-color: #00bfff; 24 | --rulers-background-color: #ffffff; 25 | --rulers-corner-background-color: #cccccc; 26 | --rulers-selection-background-color: #cccccc; 27 | --rulers-text-color: #000000; 28 | --label-document-margin-color: #add8e6; 29 | } 30 | -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- 1 | using System.Web; 2 | using System.Web.Optimization; 3 | 4 | namespace TLWebEditorLegacyMVCDemo 5 | { 6 | public class BundleConfig 7 | { 8 | // For more information on bundling, visit https://go.microsoft.com/fwlink/?LinkId=301862 9 | public static void RegisterBundles(BundleCollection bundles) 10 | { 11 | bundles.Add(new ScriptBundle("~/bundles/jquery").Include( 12 | "~/Scripts/jquery-{version}.js")); 13 | 14 | bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include( 15 | "~/Scripts/jquery.validate*")); 16 | 17 | // Use the development version of Modernizr to develop with and learn from. Then, when you're 18 | // ready for production, use the build tool at https://modernizr.com to pick only the tests you need. 19 | bundles.Add(new ScriptBundle("~/bundles/modernizr").Include( 20 | "~/Scripts/modernizr-*")); 21 | 22 | bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include( 23 | "~/Scripts/bootstrap.js")); 24 | 25 | bundles.Add(new StyleBundle("~/Content/css").Include( 26 | "~/Content/bootstrap.css", 27 | "~/Content/site.css")); 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /TLWebEditorLegacyMVCDemo/TLWebEditorLegacyMVCDemo/Web.Debug.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 17 | 18 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /TLSDKSamplesWPFCS/ImageFormatDialog.xaml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/Web.Debug.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 17 | 18 | 29 | 30 | -------------------------------------------------------------------------------- /TLWebEditorWebFormsDemo/TLWebEditorWebFormsDemo/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | --------------------------------------------------------------------------------