Pulizia file tracciati x errore da push sul master precedente
This commit is contained in:
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -1,148 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Csv</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Csv.CsvOptions">
|
||||
<summary>
|
||||
Defines the options that can be passed to customize the reading or writing of csv files.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Csv.CsvOptions.RowsToSkip">
|
||||
<summary>
|
||||
Gets or sets the number of rows to skip before reading the header row, defaults to <c>0</c>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Csv.CsvOptions.SkipRow">
|
||||
<summary>
|
||||
Gets or sets a function to skip the current row based on its raw string value or 1-based index. Skips empty rows and rows starting with # by default.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Csv.CsvOptions.Separator">
|
||||
<summary>
|
||||
Gets or sets the character to use for separating data, defaults to <c>'\0'</c> which will auto-detect from the header row.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Csv.CsvOptions.TrimData">
|
||||
<summary>
|
||||
Gets or sets wether data should be trimmed when accessed.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Csv.CsvOptions.Comparer">
|
||||
<summary>
|
||||
Gets or sets the comparer to use when looking up header names.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Csv.CsvOptions.HeaderMode">
|
||||
<summary>
|
||||
Gets or sets an indicator to the parser to expect a header row or not.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Csv.CsvOptions.ValidateColumnCount">
|
||||
<summary>
|
||||
Gets or sets wether a row should be validated immediately that the column count matches the header count.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Csv.CsvReader">
|
||||
<summary>
|
||||
Helper class to read csv (comma separated values) data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Csv.CsvReader.Read(System.IO.TextReader,Csv.CsvOptions)">
|
||||
<summary>
|
||||
Reads the lines from the reader.
|
||||
</summary>
|
||||
<param name="reader">The text reader to read the data from.</param>
|
||||
<param name="options">The optional options to use when reading.</param>
|
||||
</member>
|
||||
<member name="M:Csv.CsvReader.ReadFromStream(System.IO.Stream,Csv.CsvOptions)">
|
||||
<summary>
|
||||
Reads the lines from the stream.
|
||||
</summary>
|
||||
<param name="stream">The stream to read the data from.</param>
|
||||
<param name="options">The optional options to use when reading.</param>
|
||||
</member>
|
||||
<member name="M:Csv.CsvReader.ReadFromText(System.String,Csv.CsvOptions)">
|
||||
<summary>
|
||||
Reads the lines from the csv string.
|
||||
</summary>
|
||||
<param name="csv">The csv string to read the data from.</param>
|
||||
<param name="options">The optional options to use when reading.</param>
|
||||
</member>
|
||||
<member name="T:Csv.CsvWriter">
|
||||
<summary>
|
||||
Helper class to write csv (comma separated values) data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Csv.CsvWriter.Write(System.IO.TextWriter,System.String[],System.Collections.Generic.IEnumerable{System.String[]},System.Char)">
|
||||
<summary>
|
||||
Writes the lines to the writer.
|
||||
</summary>
|
||||
<param name="writer">The text writer to write the data to.</param>
|
||||
<param name="headers">The headers that should be used for the first line, determines the number of columns.</param>
|
||||
<param name="lines">The lines with data that should be written.</param>
|
||||
<param name="separator">The separator to use between columns (comma, semicolon, tab, ...)</param>
|
||||
</member>
|
||||
<member name="M:Csv.CsvWriter.WriteToText(System.String[],System.Collections.Generic.IEnumerable{System.String[]},System.Char)">
|
||||
<summary>
|
||||
Writes the lines and return the result.
|
||||
</summary>
|
||||
<param name="headers">The headers that should be used for the first line, determines the number of columns.</param>
|
||||
<param name="lines">The lines with data that should be written.</param>
|
||||
<param name="separator">The separator to use between columns (comma, semicolon, tab, ...)</param>
|
||||
</member>
|
||||
<member name="T:Csv.HeaderMode">
|
||||
<summary>
|
||||
Indicates the presence or absence of a header row
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Csv.HeaderMode.HeaderPresent">
|
||||
<summary>
|
||||
Indicates that the CSV file has a header row
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Csv.HeaderMode.HeaderAbsent">
|
||||
<summary>
|
||||
Indicates that the CSV file does not have a header row
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Csv.ICsvLine">
|
||||
<summary>
|
||||
Represents a single data line inside a csv file.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Csv.ICsvLine.Headers">
|
||||
<summary>
|
||||
Gets the headers from the csv file.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Csv.ICsvLine.Raw">
|
||||
<summary>
|
||||
Gets the original raw content of the line.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Csv.ICsvLine.Index">
|
||||
<summary>
|
||||
Gets the 1-based index for the line inside the file.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Csv.ICsvLine.ColumnCount">
|
||||
<summary>
|
||||
Gets the number of columns of the line.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Csv.ICsvLine.Item(System.String)">
|
||||
<summary>
|
||||
Gets the data for the specified named header.
|
||||
</summary>
|
||||
<param name="name">The name of the header.</param>
|
||||
</member>
|
||||
<member name="P:Csv.ICsvLine.Item(System.Int32)">
|
||||
<summary>
|
||||
Gets the data for the specified indexed header.
|
||||
</summary>
|
||||
<param name="index">The index of the header.</param>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
@@ -1,57 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>ZebraPrinterSdk</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Zebra.Sdk.Graphics.Shared.IZebraImageFactory">
|
||||
<summary>
|
||||
A factory interface used to acquire a cross platform instance of ZebraImageI.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Zebra.Sdk.Graphics.Shared.IZebraImageFactory.GetImage(System.String)">
|
||||
<summary>
|
||||
Creates an instance of <see cref="T:Zebra.Sdk.Graphics.ZebraImageI"/> from the image specified in <c>fullPath</c>.
|
||||
</summary>
|
||||
<param name="fullPath">The full path of the image.</param>
|
||||
<returns>An image formatted for Zebra Printers</returns>
|
||||
<exception cref="T:System.IO.IOException">If the file could not be found, open, or is an unsupported graphic.</exception>
|
||||
<exception cref="T:System.ArgumentException">If <c>fullPath</c> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Zebra.Sdk.Graphics.Shared.IZebraImageFactory.GetImage(System.Byte[])">
|
||||
<summary>
|
||||
Creates an instance of <see cref="T:Zebra.Sdk.Graphics.ZebraImageI"/> from the image data specified in <c>imageData</c>.
|
||||
</summary>
|
||||
<param name="imageData">A byte[] containing the image data.</param>
|
||||
<returns>An image formatted for Zebra Printers.</returns>
|
||||
<exception cref="T:System.IO.IOException">If the file could not be found, open, or is an unsupported graphic.</exception>
|
||||
<exception cref="T:System.ArgumentException">If <c>imageData</c> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Zebra.Sdk.Graphics.Shared.IZebraImageFactory.GetImage(System.IO.Stream)">
|
||||
<summary>
|
||||
Creates an instance of <see cref="T:Zebra.Sdk.Graphics.ZebraImageI"/> from the image data specified in <c>imageData</c>.
|
||||
</summary>
|
||||
<param name="imageData">A stream containing the image data.</param>
|
||||
<returns>An image formatted for Zebra Printers.</returns>
|
||||
<exception cref="T:System.IO.IOException">If the file could not be found, open, or is an unsupported graphic.</exception>
|
||||
<exception cref="T:System.ArgumentException">If <c>imageData</c> is null.</exception>
|
||||
</member>
|
||||
<member name="T:Zebra.Sdk.Graphics.Shared.ZebraImageFactory">
|
||||
<summary>
|
||||
A factory used to acquire an instance of ZebraImageI.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Zebra.Sdk.Graphics.Shared.ZebraImageFactory.Current">
|
||||
<summary>
|
||||
Current IZebraPrinterFactory to use
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Zebra.Sdk.Comm.Internal.BluetoothHelper.ConvertMacAddressToUlong(System.String)">
|
||||
<summary>
|
||||
</summary>
|
||||
<param name="macAddress"></param>
|
||||
<returns></returns>
|
||||
<exception cref="T:System.ArgumentException"></exception>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
Binary file not shown.
@@ -1,14 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
||||
</startup>
|
||||
<runtime>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-11.0.0.0" newVersion="11.0.0.0" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
||||
</configuration>
|
||||
Binary file not shown.
@@ -1,68 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>
|
||||
ZebraPrinterUtilities
|
||||
</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:ZebraPrinterUtilities.My.MyWpfExtension">
|
||||
<summary>
|
||||
Modulo utilizzato per definire le proprietà disponibili nello spazio dei nomi My per WPF
|
||||
</summary>
|
||||
<remarks></remarks>
|
||||
</member>
|
||||
<member name="P:ZebraPrinterUtilities.My.MyWpfExtension.Application">
|
||||
<summary>
|
||||
Restituisce l'oggetto applicazione per l'applicazione in esecuzione
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ZebraPrinterUtilities.My.MyWpfExtension.Computer">
|
||||
<summary>
|
||||
Restituisce le informazioni sul computer host.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ZebraPrinterUtilities.My.MyWpfExtension.User">
|
||||
<summary>
|
||||
Restituisce le informazioni per l'utente corrente. Se si desidera eseguire l'applicazione con le
|
||||
credenziali utente di Windows correnti, chiamare My.User.InitializeWithWindowsUser().
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ZebraPrinterUtilities.My.MyWpfExtension.Log">
|
||||
<summary>
|
||||
Restituisce il registro applicazioni. I listener possono essere configurati dal file di configurazione dell'applicazione.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ZebraPrinterUtilities.My.MyWpfExtension.Windows">
|
||||
<summary>
|
||||
Restituisce la raccolta di oggetti Window definiti nel progetto.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:ZebraPrinterUtilities.My.Resources.Resources">
|
||||
<summary>
|
||||
A strongly-typed resource class, for looking up localized strings, etc.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ZebraPrinterUtilities.My.Resources.Resources.ResourceManager">
|
||||
<summary>
|
||||
Returns the cached ResourceManager instance used by this class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ZebraPrinterUtilities.My.Resources.Resources.Culture">
|
||||
<summary>
|
||||
Overrides the current thread's CurrentUICulture property for all
|
||||
resource lookups using this strongly typed resource class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:ZebraPrinterUtilities.Application">
|
||||
<summary>
|
||||
Application
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:ZebraPrinterUtilities.Application.Main">
|
||||
<summary>
|
||||
Application Entry Point.
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -1,148 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Csv</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Csv.CsvOptions">
|
||||
<summary>
|
||||
Defines the options that can be passed to customize the reading or writing of csv files.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Csv.CsvOptions.RowsToSkip">
|
||||
<summary>
|
||||
Gets or sets the number of rows to skip before reading the header row, defaults to <c>0</c>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Csv.CsvOptions.SkipRow">
|
||||
<summary>
|
||||
Gets or sets a function to skip the current row based on its raw string value or 1-based index. Skips empty rows and rows starting with # by default.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Csv.CsvOptions.Separator">
|
||||
<summary>
|
||||
Gets or sets the character to use for separating data, defaults to <c>'\0'</c> which will auto-detect from the header row.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Csv.CsvOptions.TrimData">
|
||||
<summary>
|
||||
Gets or sets wether data should be trimmed when accessed.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Csv.CsvOptions.Comparer">
|
||||
<summary>
|
||||
Gets or sets the comparer to use when looking up header names.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Csv.CsvOptions.HeaderMode">
|
||||
<summary>
|
||||
Gets or sets an indicator to the parser to expect a header row or not.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Csv.CsvOptions.ValidateColumnCount">
|
||||
<summary>
|
||||
Gets or sets wether a row should be validated immediately that the column count matches the header count.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Csv.CsvReader">
|
||||
<summary>
|
||||
Helper class to read csv (comma separated values) data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Csv.CsvReader.Read(System.IO.TextReader,Csv.CsvOptions)">
|
||||
<summary>
|
||||
Reads the lines from the reader.
|
||||
</summary>
|
||||
<param name="reader">The text reader to read the data from.</param>
|
||||
<param name="options">The optional options to use when reading.</param>
|
||||
</member>
|
||||
<member name="M:Csv.CsvReader.ReadFromStream(System.IO.Stream,Csv.CsvOptions)">
|
||||
<summary>
|
||||
Reads the lines from the stream.
|
||||
</summary>
|
||||
<param name="stream">The stream to read the data from.</param>
|
||||
<param name="options">The optional options to use when reading.</param>
|
||||
</member>
|
||||
<member name="M:Csv.CsvReader.ReadFromText(System.String,Csv.CsvOptions)">
|
||||
<summary>
|
||||
Reads the lines from the csv string.
|
||||
</summary>
|
||||
<param name="csv">The csv string to read the data from.</param>
|
||||
<param name="options">The optional options to use when reading.</param>
|
||||
</member>
|
||||
<member name="T:Csv.CsvWriter">
|
||||
<summary>
|
||||
Helper class to write csv (comma separated values) data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Csv.CsvWriter.Write(System.IO.TextWriter,System.String[],System.Collections.Generic.IEnumerable{System.String[]},System.Char)">
|
||||
<summary>
|
||||
Writes the lines to the writer.
|
||||
</summary>
|
||||
<param name="writer">The text writer to write the data to.</param>
|
||||
<param name="headers">The headers that should be used for the first line, determines the number of columns.</param>
|
||||
<param name="lines">The lines with data that should be written.</param>
|
||||
<param name="separator">The separator to use between columns (comma, semicolon, tab, ...)</param>
|
||||
</member>
|
||||
<member name="M:Csv.CsvWriter.WriteToText(System.String[],System.Collections.Generic.IEnumerable{System.String[]},System.Char)">
|
||||
<summary>
|
||||
Writes the lines and return the result.
|
||||
</summary>
|
||||
<param name="headers">The headers that should be used for the first line, determines the number of columns.</param>
|
||||
<param name="lines">The lines with data that should be written.</param>
|
||||
<param name="separator">The separator to use between columns (comma, semicolon, tab, ...)</param>
|
||||
</member>
|
||||
<member name="T:Csv.HeaderMode">
|
||||
<summary>
|
||||
Indicates the presence or absence of a header row
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Csv.HeaderMode.HeaderPresent">
|
||||
<summary>
|
||||
Indicates that the CSV file has a header row
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Csv.HeaderMode.HeaderAbsent">
|
||||
<summary>
|
||||
Indicates that the CSV file does not have a header row
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Csv.ICsvLine">
|
||||
<summary>
|
||||
Represents a single data line inside a csv file.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Csv.ICsvLine.Headers">
|
||||
<summary>
|
||||
Gets the headers from the csv file.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Csv.ICsvLine.Raw">
|
||||
<summary>
|
||||
Gets the original raw content of the line.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Csv.ICsvLine.Index">
|
||||
<summary>
|
||||
Gets the 1-based index for the line inside the file.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Csv.ICsvLine.ColumnCount">
|
||||
<summary>
|
||||
Gets the number of columns of the line.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Csv.ICsvLine.Item(System.String)">
|
||||
<summary>
|
||||
Gets the data for the specified named header.
|
||||
</summary>
|
||||
<param name="name">The name of the header.</param>
|
||||
</member>
|
||||
<member name="P:Csv.ICsvLine.Item(System.Int32)">
|
||||
<summary>
|
||||
Gets the data for the specified indexed header.
|
||||
</summary>
|
||||
<param name="index">The index of the header.</param>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
@@ -1,57 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>ZebraPrinterSdk</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Zebra.Sdk.Graphics.Shared.IZebraImageFactory">
|
||||
<summary>
|
||||
A factory interface used to acquire a cross platform instance of ZebraImageI.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Zebra.Sdk.Graphics.Shared.IZebraImageFactory.GetImage(System.String)">
|
||||
<summary>
|
||||
Creates an instance of <see cref="T:Zebra.Sdk.Graphics.ZebraImageI"/> from the image specified in <c>fullPath</c>.
|
||||
</summary>
|
||||
<param name="fullPath">The full path of the image.</param>
|
||||
<returns>An image formatted for Zebra Printers</returns>
|
||||
<exception cref="T:System.IO.IOException">If the file could not be found, open, or is an unsupported graphic.</exception>
|
||||
<exception cref="T:System.ArgumentException">If <c>fullPath</c> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Zebra.Sdk.Graphics.Shared.IZebraImageFactory.GetImage(System.Byte[])">
|
||||
<summary>
|
||||
Creates an instance of <see cref="T:Zebra.Sdk.Graphics.ZebraImageI"/> from the image data specified in <c>imageData</c>.
|
||||
</summary>
|
||||
<param name="imageData">A byte[] containing the image data.</param>
|
||||
<returns>An image formatted for Zebra Printers.</returns>
|
||||
<exception cref="T:System.IO.IOException">If the file could not be found, open, or is an unsupported graphic.</exception>
|
||||
<exception cref="T:System.ArgumentException">If <c>imageData</c> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Zebra.Sdk.Graphics.Shared.IZebraImageFactory.GetImage(System.IO.Stream)">
|
||||
<summary>
|
||||
Creates an instance of <see cref="T:Zebra.Sdk.Graphics.ZebraImageI"/> from the image data specified in <c>imageData</c>.
|
||||
</summary>
|
||||
<param name="imageData">A stream containing the image data.</param>
|
||||
<returns>An image formatted for Zebra Printers.</returns>
|
||||
<exception cref="T:System.IO.IOException">If the file could not be found, open, or is an unsupported graphic.</exception>
|
||||
<exception cref="T:System.ArgumentException">If <c>imageData</c> is null.</exception>
|
||||
</member>
|
||||
<member name="T:Zebra.Sdk.Graphics.Shared.ZebraImageFactory">
|
||||
<summary>
|
||||
A factory used to acquire an instance of ZebraImageI.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Zebra.Sdk.Graphics.Shared.ZebraImageFactory.Current">
|
||||
<summary>
|
||||
Current IZebraPrinterFactory to use
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Zebra.Sdk.Comm.Internal.BluetoothHelper.ConvertMacAddressToUlong(System.String)">
|
||||
<summary>
|
||||
</summary>
|
||||
<param name="macAddress"></param>
|
||||
<returns></returns>
|
||||
<exception cref="T:System.ArgumentException"></exception>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
Binary file not shown.
@@ -1,14 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
||||
</startup>
|
||||
<runtime>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-11.0.0.0" newVersion="11.0.0.0" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
||||
</configuration>
|
||||
Binary file not shown.
@@ -1,68 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>
|
||||
ZebraPrinterUtilities
|
||||
</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:ZebraPrinterUtilities.My.MyWpfExtension">
|
||||
<summary>
|
||||
Modulo utilizzato per definire le proprietà disponibili nello spazio dei nomi My per WPF
|
||||
</summary>
|
||||
<remarks></remarks>
|
||||
</member>
|
||||
<member name="P:ZebraPrinterUtilities.My.MyWpfExtension.Application">
|
||||
<summary>
|
||||
Restituisce l'oggetto applicazione per l'applicazione in esecuzione
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ZebraPrinterUtilities.My.MyWpfExtension.Computer">
|
||||
<summary>
|
||||
Restituisce le informazioni sul computer host.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ZebraPrinterUtilities.My.MyWpfExtension.User">
|
||||
<summary>
|
||||
Restituisce le informazioni per l'utente corrente. Se si desidera eseguire l'applicazione con le
|
||||
credenziali utente di Windows correnti, chiamare My.User.InitializeWithWindowsUser().
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ZebraPrinterUtilities.My.MyWpfExtension.Log">
|
||||
<summary>
|
||||
Restituisce il registro applicazioni. I listener possono essere configurati dal file di configurazione dell'applicazione.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ZebraPrinterUtilities.My.MyWpfExtension.Windows">
|
||||
<summary>
|
||||
Restituisce la raccolta di oggetti Window definiti nel progetto.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:ZebraPrinterUtilities.My.Resources.Resources">
|
||||
<summary>
|
||||
A strongly-typed resource class, for looking up localized strings, etc.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ZebraPrinterUtilities.My.Resources.Resources.ResourceManager">
|
||||
<summary>
|
||||
Returns the cached ResourceManager instance used by this class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ZebraPrinterUtilities.My.Resources.Resources.Culture">
|
||||
<summary>
|
||||
Overrides the current thread's CurrentUICulture property for all
|
||||
resource lookups using this strongly typed resource class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:ZebraPrinterUtilities.Application">
|
||||
<summary>
|
||||
Application
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:ZebraPrinterUtilities.Application.Main">
|
||||
<summary>
|
||||
Application Entry Point.
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
@@ -1,7 +0,0 @@
|
||||
' <autogenerated/>
|
||||
Option Strict Off
|
||||
Option Explicit On
|
||||
|
||||
Imports System
|
||||
Imports System.Reflection
|
||||
<Assembly: Global.System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName:=".NET Framework 4.7.2")>
|
||||
@@ -1,55 +0,0 @@
|
||||
#ExternalChecksum("..\..\Application.xaml","{8829d00f-11b8-4213-878b-770e8597ac16}","B4EC3D1F99D2BE32F0C95BCA7B6518256E2BB01F0ECE73E3F01F97D7B947C9E6")
|
||||
'------------------------------------------------------------------------------
|
||||
' <auto-generated>
|
||||
' This code was generated by a tool.
|
||||
' Runtime Version:4.0.30319.42000
|
||||
'
|
||||
' Changes to this file may cause incorrect behavior and will be lost if
|
||||
' the code is regenerated.
|
||||
' </auto-generated>
|
||||
'------------------------------------------------------------------------------
|
||||
|
||||
Option Strict Off
|
||||
Option Explicit On
|
||||
|
||||
Imports System
|
||||
Imports System.Diagnostics
|
||||
Imports System.Windows
|
||||
Imports System.Windows.Automation
|
||||
Imports System.Windows.Controls
|
||||
Imports System.Windows.Controls.Primitives
|
||||
Imports System.Windows.Data
|
||||
Imports System.Windows.Documents
|
||||
Imports System.Windows.Ink
|
||||
Imports System.Windows.Input
|
||||
Imports System.Windows.Markup
|
||||
Imports System.Windows.Media
|
||||
Imports System.Windows.Media.Animation
|
||||
Imports System.Windows.Media.Effects
|
||||
Imports System.Windows.Media.Imaging
|
||||
Imports System.Windows.Media.Media3D
|
||||
Imports System.Windows.Media.TextFormatting
|
||||
Imports System.Windows.Navigation
|
||||
Imports System.Windows.Shapes
|
||||
Imports System.Windows.Shell
|
||||
Imports ZebraPrinterUtilities
|
||||
|
||||
|
||||
'''<summary>
|
||||
'''Application
|
||||
'''</summary>
|
||||
Partial Public Class Application
|
||||
Inherits System.Windows.Application
|
||||
|
||||
'''<summary>
|
||||
'''Application Entry Point.
|
||||
'''</summary>
|
||||
<System.STAThreadAttribute(), _
|
||||
System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")> _
|
||||
Public Shared Sub Main()
|
||||
Dim app As Application = New Application()
|
||||
app.Run
|
||||
End Sub
|
||||
End Class
|
||||
|
||||
@@ -1,55 +0,0 @@
|
||||
#ExternalChecksum("..\..\Application.xaml","{8829d00f-11b8-4213-878b-770e8597ac16}","B4EC3D1F99D2BE32F0C95BCA7B6518256E2BB01F0ECE73E3F01F97D7B947C9E6")
|
||||
'------------------------------------------------------------------------------
|
||||
' <auto-generated>
|
||||
' This code was generated by a tool.
|
||||
' Runtime Version:4.0.30319.42000
|
||||
'
|
||||
' Changes to this file may cause incorrect behavior and will be lost if
|
||||
' the code is regenerated.
|
||||
' </auto-generated>
|
||||
'------------------------------------------------------------------------------
|
||||
|
||||
Option Strict Off
|
||||
Option Explicit On
|
||||
|
||||
Imports System
|
||||
Imports System.Diagnostics
|
||||
Imports System.Windows
|
||||
Imports System.Windows.Automation
|
||||
Imports System.Windows.Controls
|
||||
Imports System.Windows.Controls.Primitives
|
||||
Imports System.Windows.Data
|
||||
Imports System.Windows.Documents
|
||||
Imports System.Windows.Ink
|
||||
Imports System.Windows.Input
|
||||
Imports System.Windows.Markup
|
||||
Imports System.Windows.Media
|
||||
Imports System.Windows.Media.Animation
|
||||
Imports System.Windows.Media.Effects
|
||||
Imports System.Windows.Media.Imaging
|
||||
Imports System.Windows.Media.Media3D
|
||||
Imports System.Windows.Media.TextFormatting
|
||||
Imports System.Windows.Navigation
|
||||
Imports System.Windows.Shapes
|
||||
Imports System.Windows.Shell
|
||||
Imports ZebraPrinterUtilities
|
||||
|
||||
|
||||
'''<summary>
|
||||
'''Application
|
||||
'''</summary>
|
||||
Partial Public Class Application
|
||||
Inherits System.Windows.Application
|
||||
|
||||
'''<summary>
|
||||
'''Application Entry Point.
|
||||
'''</summary>
|
||||
<System.STAThreadAttribute(), _
|
||||
System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")> _
|
||||
Public Shared Sub Main()
|
||||
Dim app As Application = New Application()
|
||||
app.Run
|
||||
End Sub
|
||||
End Class
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -1,76 +0,0 @@
|
||||
#ExternalChecksum("..\..\MainWindow.xaml","{8829d00f-11b8-4213-878b-770e8597ac16}","A5A5A6C93107BBEF4E7CAD670521E84B7F1CB98C6F3F871C012B73897AF1497C")
|
||||
'------------------------------------------------------------------------------
|
||||
' <auto-generated>
|
||||
' Il codice è stato generato da uno strumento.
|
||||
' Versione runtime:4.0.30319.42000
|
||||
'
|
||||
' Le modifiche apportate a questo file possono provocare un comportamento non corretto e andranno perse se
|
||||
' il codice viene rigenerato.
|
||||
' </auto-generated>
|
||||
'------------------------------------------------------------------------------
|
||||
|
||||
Option Strict Off
|
||||
Option Explicit On
|
||||
|
||||
Imports System
|
||||
Imports System.Diagnostics
|
||||
Imports System.Windows
|
||||
Imports System.Windows.Automation
|
||||
Imports System.Windows.Controls
|
||||
Imports System.Windows.Controls.Primitives
|
||||
Imports System.Windows.Data
|
||||
Imports System.Windows.Documents
|
||||
Imports System.Windows.Ink
|
||||
Imports System.Windows.Input
|
||||
Imports System.Windows.Markup
|
||||
Imports System.Windows.Media
|
||||
Imports System.Windows.Media.Animation
|
||||
Imports System.Windows.Media.Effects
|
||||
Imports System.Windows.Media.Imaging
|
||||
Imports System.Windows.Media.Media3D
|
||||
Imports System.Windows.Media.TextFormatting
|
||||
Imports System.Windows.Navigation
|
||||
Imports System.Windows.Shapes
|
||||
Imports System.Windows.Shell
|
||||
Imports ZebraPrinterUtilities
|
||||
|
||||
|
||||
'''<summary>
|
||||
'''MainWindow
|
||||
'''</summary>
|
||||
<Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
|
||||
Partial Public Class MainWindow
|
||||
Inherits System.Windows.Window
|
||||
Implements System.Windows.Markup.IComponentConnector
|
||||
|
||||
Private _contentLoaded As Boolean
|
||||
|
||||
'''<summary>
|
||||
'''InitializeComponent
|
||||
'''</summary>
|
||||
<System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")> _
|
||||
Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent
|
||||
If _contentLoaded Then
|
||||
Return
|
||||
End If
|
||||
_contentLoaded = true
|
||||
Dim resourceLocater As System.Uri = New System.Uri("/ZebraPrinterUtilities;component/mainwindow.xaml", System.UriKind.Relative)
|
||||
|
||||
#ExternalSource("..\..\MainWindow.xaml",1)
|
||||
System.Windows.Application.LoadComponent(Me, resourceLocater)
|
||||
|
||||
#End ExternalSource
|
||||
End Sub
|
||||
|
||||
<System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0"), _
|
||||
System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never), _
|
||||
System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes"), _
|
||||
System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity"), _
|
||||
System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")> _
|
||||
Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect
|
||||
Me._contentLoaded = true
|
||||
End Sub
|
||||
End Class
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +0,0 @@
|
||||
04ef087c711b07f81dfaa2c1b11153f2950ac0b0
|
||||
@@ -1,31 +0,0 @@
|
||||
C:\EgtDev\ZebraPrinterUtilities\obj\Debug\Application.g.vb
|
||||
C:\EgtDev\ZebraPrinterUtilities\obj\Debug\ZebraPrinterUtilities_MarkupCompile.cache
|
||||
C:\EgtDev\ZebraPrinterUtilities\obj\Debug\ZebraPrinterUtilities.Resources.resources
|
||||
C:\EgtDev\ZebraPrinterUtilities\obj\Debug\ZebraPrinterUtilities.vbproj.GenerateResource.cache
|
||||
C:\EgtDev\ZebraPrinterUtilities\obj\Debug\ZebraPrinterUtilities.vbproj.CoreCompileInputs.cache
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Debug\ZebraPrinterUtilities.exe.config
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Debug\ZebraPrinterUtilities.exe
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Debug\ZebraPrinterUtilities.pdb
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Debug\ZebraPrinterUtilities.xml
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Debug\BouncyCastle.Crypto.dll
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Debug\Csv.dll
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Debug\FluentFTP.dll
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Debug\Microsoft.DotNet.PlatformAbstractions.dll
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Debug\Microsoft.Extensions.DependencyModel.dll
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Debug\Newtonsoft.Json.dll
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Debug\SdkApi.Core.dll
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Debug\SdkApi.Desktop.dll
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Debug\SdkApi.Desktop.Usb.dll
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Debug\SharpSnmpLib.dll
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Debug\ZebraPrinterSdk.dll
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Debug\BouncyCastle.Crypto.xml
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Debug\Csv.xml
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Debug\FluentFTP.xml
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Debug\Newtonsoft.Json.xml
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Debug\SdkApi.Core.xml
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Debug\SdkApi.Desktop.xml
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Debug\ZebraPrinterSdk.xml
|
||||
C:\EgtDev\ZebraPrinterUtilities\obj\Debug\ZebraPrinterUtilities.vbproj.CopyComplete
|
||||
C:\EgtDev\ZebraPrinterUtilities\obj\Debug\ZebraPrinterUtilities.exe
|
||||
C:\EgtDev\ZebraPrinterUtilities\obj\Debug\ZebraPrinterUtilities.xml
|
||||
C:\EgtDev\ZebraPrinterUtilities\obj\Debug\ZebraPrinterUtilities.pdb
|
||||
Binary file not shown.
@@ -1,68 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>
|
||||
ZebraPrinterUtilities
|
||||
</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:ZebraPrinterUtilities.My.MyWpfExtension">
|
||||
<summary>
|
||||
Modulo utilizzato per definire le proprietà disponibili nello spazio dei nomi My per WPF
|
||||
</summary>
|
||||
<remarks></remarks>
|
||||
</member>
|
||||
<member name="P:ZebraPrinterUtilities.My.MyWpfExtension.Application">
|
||||
<summary>
|
||||
Restituisce l'oggetto applicazione per l'applicazione in esecuzione
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ZebraPrinterUtilities.My.MyWpfExtension.Computer">
|
||||
<summary>
|
||||
Restituisce le informazioni sul computer host.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ZebraPrinterUtilities.My.MyWpfExtension.User">
|
||||
<summary>
|
||||
Restituisce le informazioni per l'utente corrente. Se si desidera eseguire l'applicazione con le
|
||||
credenziali utente di Windows correnti, chiamare My.User.InitializeWithWindowsUser().
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ZebraPrinterUtilities.My.MyWpfExtension.Log">
|
||||
<summary>
|
||||
Restituisce il registro applicazioni. I listener possono essere configurati dal file di configurazione dell'applicazione.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ZebraPrinterUtilities.My.MyWpfExtension.Windows">
|
||||
<summary>
|
||||
Restituisce la raccolta di oggetti Window definiti nel progetto.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:ZebraPrinterUtilities.My.Resources.Resources">
|
||||
<summary>
|
||||
A strongly-typed resource class, for looking up localized strings, etc.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ZebraPrinterUtilities.My.Resources.Resources.ResourceManager">
|
||||
<summary>
|
||||
Returns the cached ResourceManager instance used by this class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ZebraPrinterUtilities.My.Resources.Resources.Culture">
|
||||
<summary>
|
||||
Overrides the current thread's CurrentUICulture property for all
|
||||
resource lookups using this strongly typed resource class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:ZebraPrinterUtilities.Application">
|
||||
<summary>
|
||||
Application
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:ZebraPrinterUtilities.Application.Main">
|
||||
<summary>
|
||||
Application Entry Point.
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
@@ -1,20 +0,0 @@
|
||||
ZebraPrinterUtilities
|
||||
|
||||
|
||||
winexe
|
||||
VB
|
||||
.vb
|
||||
c:\EgtDev\ZebraPrinterUtilities\obj\Debug\
|
||||
ZebraPrinterUtilities
|
||||
none
|
||||
false
|
||||
|
||||
c:\EgtDev\ZebraPrinterUtilities\Application.xaml
|
||||
|
||||
|
||||
633751935
|
||||
31383730998
|
||||
|
||||
|
||||
False
|
||||
|
||||
@@ -1,20 +0,0 @@
|
||||
ZebraPrinterUtilities
|
||||
|
||||
|
||||
winexe
|
||||
VB
|
||||
.vb
|
||||
c:\EgtDev\ZebraPrinterUtilities\obj\Debug\
|
||||
ZebraPrinterUtilities
|
||||
none
|
||||
false
|
||||
|
||||
c:\EgtDev\ZebraPrinterUtilities\Application.xaml
|
||||
|
||||
|
||||
7246719457
|
||||
31383730998
|
||||
|
||||
|
||||
False
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
' <autogenerated/>
|
||||
Option Strict Off
|
||||
Option Explicit On
|
||||
|
||||
Imports System
|
||||
Imports System.Reflection
|
||||
<Assembly: Global.System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName:=".NET Framework 4.7.2")>
|
||||
@@ -1,55 +0,0 @@
|
||||
#ExternalChecksum("..\..\Application.xaml","{8829d00f-11b8-4213-878b-770e8597ac16}","B4EC3D1F99D2BE32F0C95BCA7B6518256E2BB01F0ECE73E3F01F97D7B947C9E6")
|
||||
'------------------------------------------------------------------------------
|
||||
' <auto-generated>
|
||||
' This code was generated by a tool.
|
||||
' Runtime Version:4.0.30319.42000
|
||||
'
|
||||
' Changes to this file may cause incorrect behavior and will be lost if
|
||||
' the code is regenerated.
|
||||
' </auto-generated>
|
||||
'------------------------------------------------------------------------------
|
||||
|
||||
Option Strict Off
|
||||
Option Explicit On
|
||||
|
||||
Imports System
|
||||
Imports System.Diagnostics
|
||||
Imports System.Windows
|
||||
Imports System.Windows.Automation
|
||||
Imports System.Windows.Controls
|
||||
Imports System.Windows.Controls.Primitives
|
||||
Imports System.Windows.Data
|
||||
Imports System.Windows.Documents
|
||||
Imports System.Windows.Ink
|
||||
Imports System.Windows.Input
|
||||
Imports System.Windows.Markup
|
||||
Imports System.Windows.Media
|
||||
Imports System.Windows.Media.Animation
|
||||
Imports System.Windows.Media.Effects
|
||||
Imports System.Windows.Media.Imaging
|
||||
Imports System.Windows.Media.Media3D
|
||||
Imports System.Windows.Media.TextFormatting
|
||||
Imports System.Windows.Navigation
|
||||
Imports System.Windows.Shapes
|
||||
Imports System.Windows.Shell
|
||||
Imports ZebraPrinterUtilities
|
||||
|
||||
|
||||
'''<summary>
|
||||
'''Application
|
||||
'''</summary>
|
||||
Partial Public Class Application
|
||||
Inherits System.Windows.Application
|
||||
|
||||
'''<summary>
|
||||
'''Application Entry Point.
|
||||
'''</summary>
|
||||
<System.STAThreadAttribute(), _
|
||||
System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")> _
|
||||
Public Shared Sub Main()
|
||||
Dim app As Application = New Application()
|
||||
app.Run
|
||||
End Sub
|
||||
End Class
|
||||
|
||||
@@ -1,55 +0,0 @@
|
||||
#ExternalChecksum("..\..\Application.xaml","{8829d00f-11b8-4213-878b-770e8597ac16}","B4EC3D1F99D2BE32F0C95BCA7B6518256E2BB01F0ECE73E3F01F97D7B947C9E6")
|
||||
'------------------------------------------------------------------------------
|
||||
' <auto-generated>
|
||||
' This code was generated by a tool.
|
||||
' Runtime Version:4.0.30319.42000
|
||||
'
|
||||
' Changes to this file may cause incorrect behavior and will be lost if
|
||||
' the code is regenerated.
|
||||
' </auto-generated>
|
||||
'------------------------------------------------------------------------------
|
||||
|
||||
Option Strict Off
|
||||
Option Explicit On
|
||||
|
||||
Imports System
|
||||
Imports System.Diagnostics
|
||||
Imports System.Windows
|
||||
Imports System.Windows.Automation
|
||||
Imports System.Windows.Controls
|
||||
Imports System.Windows.Controls.Primitives
|
||||
Imports System.Windows.Data
|
||||
Imports System.Windows.Documents
|
||||
Imports System.Windows.Ink
|
||||
Imports System.Windows.Input
|
||||
Imports System.Windows.Markup
|
||||
Imports System.Windows.Media
|
||||
Imports System.Windows.Media.Animation
|
||||
Imports System.Windows.Media.Effects
|
||||
Imports System.Windows.Media.Imaging
|
||||
Imports System.Windows.Media.Media3D
|
||||
Imports System.Windows.Media.TextFormatting
|
||||
Imports System.Windows.Navigation
|
||||
Imports System.Windows.Shapes
|
||||
Imports System.Windows.Shell
|
||||
Imports ZebraPrinterUtilities
|
||||
|
||||
|
||||
'''<summary>
|
||||
'''Application
|
||||
'''</summary>
|
||||
Partial Public Class Application
|
||||
Inherits System.Windows.Application
|
||||
|
||||
'''<summary>
|
||||
'''Application Entry Point.
|
||||
'''</summary>
|
||||
<System.STAThreadAttribute(), _
|
||||
System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")> _
|
||||
Public Shared Sub Main()
|
||||
Dim app As Application = New Application()
|
||||
app.Run
|
||||
End Sub
|
||||
End Class
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +0,0 @@
|
||||
39b003d77537d7eedca46cf55517c41b886fd3c4
|
||||
@@ -1,32 +0,0 @@
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Release\ZebraPrinterUtilities.exe.config
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Release\ZebraPrinterUtilities.exe
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Release\ZebraPrinterUtilities.pdb
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Release\ZebraPrinterUtilities.xml
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Release\BouncyCastle.Crypto.dll
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Release\Csv.dll
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Release\FluentFTP.dll
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Release\Microsoft.DotNet.PlatformAbstractions.dll
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Release\Microsoft.Extensions.DependencyModel.dll
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Release\Newtonsoft.Json.dll
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Release\SdkApi.Core.dll
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Release\SdkApi.Desktop.dll
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Release\SdkApi.Desktop.Usb.dll
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Release\SharpSnmpLib.dll
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Release\ZebraPrinterSdk.dll
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Release\BouncyCastle.Crypto.xml
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Release\Csv.xml
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Release\FluentFTP.xml
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Release\Newtonsoft.Json.xml
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Release\SdkApi.Core.xml
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Release\SdkApi.Desktop.xml
|
||||
C:\EgtDev\ZebraPrinterUtilities\bin\Release\ZebraPrinterSdk.xml
|
||||
C:\EgtDev\ZebraPrinterUtilities\obj\Release\Application.g.vb
|
||||
C:\EgtDev\ZebraPrinterUtilities\obj\Release\ZebraPrinterUtilities_MarkupCompile.cache
|
||||
C:\EgtDev\ZebraPrinterUtilities\obj\Release\ZebraPrinterUtilities.Resources.resources
|
||||
C:\EgtDev\ZebraPrinterUtilities\obj\Release\ZebraPrinterUtilities.vbproj.GenerateResource.cache
|
||||
C:\EgtDev\ZebraPrinterUtilities\obj\Release\ZebraPrinterUtilities.vbproj.CoreCompileInputs.cache
|
||||
C:\EgtDev\ZebraPrinterUtilities\obj\Release\ZebraPrinterUtilities.vbproj.CopyComplete
|
||||
C:\EgtDev\ZebraPrinterUtilities\obj\Release\ZebraPrinterUtilities.exe
|
||||
C:\EgtDev\ZebraPrinterUtilities\obj\Release\ZebraPrinterUtilities.xml
|
||||
C:\EgtDev\ZebraPrinterUtilities\obj\Release\ZebraPrinterUtilities.pdb
|
||||
c:\EgtDev\ZebraPrinterUtilities\obj\Release\ZebraPrinterUtilities.vbprojAssemblyReference.cache
|
||||
Binary file not shown.
@@ -1,68 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>
|
||||
ZebraPrinterUtilities
|
||||
</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:ZebraPrinterUtilities.My.MyWpfExtension">
|
||||
<summary>
|
||||
Modulo utilizzato per definire le proprietà disponibili nello spazio dei nomi My per WPF
|
||||
</summary>
|
||||
<remarks></remarks>
|
||||
</member>
|
||||
<member name="P:ZebraPrinterUtilities.My.MyWpfExtension.Application">
|
||||
<summary>
|
||||
Restituisce l'oggetto applicazione per l'applicazione in esecuzione
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ZebraPrinterUtilities.My.MyWpfExtension.Computer">
|
||||
<summary>
|
||||
Restituisce le informazioni sul computer host.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ZebraPrinterUtilities.My.MyWpfExtension.User">
|
||||
<summary>
|
||||
Restituisce le informazioni per l'utente corrente. Se si desidera eseguire l'applicazione con le
|
||||
credenziali utente di Windows correnti, chiamare My.User.InitializeWithWindowsUser().
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ZebraPrinterUtilities.My.MyWpfExtension.Log">
|
||||
<summary>
|
||||
Restituisce il registro applicazioni. I listener possono essere configurati dal file di configurazione dell'applicazione.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ZebraPrinterUtilities.My.MyWpfExtension.Windows">
|
||||
<summary>
|
||||
Restituisce la raccolta di oggetti Window definiti nel progetto.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:ZebraPrinterUtilities.My.Resources.Resources">
|
||||
<summary>
|
||||
A strongly-typed resource class, for looking up localized strings, etc.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ZebraPrinterUtilities.My.Resources.Resources.ResourceManager">
|
||||
<summary>
|
||||
Returns the cached ResourceManager instance used by this class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ZebraPrinterUtilities.My.Resources.Resources.Culture">
|
||||
<summary>
|
||||
Overrides the current thread's CurrentUICulture property for all
|
||||
resource lookups using this strongly typed resource class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:ZebraPrinterUtilities.Application">
|
||||
<summary>
|
||||
Application
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:ZebraPrinterUtilities.Application.Main">
|
||||
<summary>
|
||||
Application Entry Point.
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
@@ -1,20 +0,0 @@
|
||||
ZebraPrinterUtilities
|
||||
|
||||
|
||||
winexe
|
||||
VB
|
||||
.vb
|
||||
c:\EgtDev\ZebraPrinterUtilities\obj\Release\
|
||||
ZebraPrinterUtilities
|
||||
none
|
||||
false
|
||||
|
||||
c:\EgtDev\ZebraPrinterUtilities\Application.xaml
|
||||
|
||||
|
||||
633751935
|
||||
31383730998
|
||||
|
||||
|
||||
False
|
||||
|
||||
@@ -1,20 +0,0 @@
|
||||
ZebraPrinterUtilities
|
||||
|
||||
|
||||
winexe
|
||||
VB
|
||||
.vb
|
||||
c:\EgtDev\ZebraPrinterUtilities\obj\Release\
|
||||
ZebraPrinterUtilities
|
||||
none
|
||||
false
|
||||
|
||||
c:\EgtDev\ZebraPrinterUtilities\Application.xaml
|
||||
|
||||
|
||||
7-1044941030
|
||||
31383730998
|
||||
|
||||
|
||||
False
|
||||
|
||||
Reference in New Issue
Block a user