diff --git a/Durckerverwaltung Static.sln b/Durckerverwaltung Static.sln new file mode 100644 index 0000000..1f18eff --- /dev/null +++ b/Durckerverwaltung Static.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.23107.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Durckerverwaltung Static", "Durckerverwaltung Static\Durckerverwaltung Static.csproj", "{3C5917FF-1DA6-473B-A935-1695C2B7694C}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {3C5917FF-1DA6-473B-A935-1695C2B7694C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3C5917FF-1DA6-473B-A935-1695C2B7694C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3C5917FF-1DA6-473B-A935-1695C2B7694C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3C5917FF-1DA6-473B-A935-1695C2B7694C}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/Durckerverwaltung Static/App.config b/Durckerverwaltung Static/App.config new file mode 100644 index 0000000..d740e88 --- /dev/null +++ b/Durckerverwaltung Static/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Durckerverwaltung Static/Drucker.cs b/Durckerverwaltung Static/Drucker.cs new file mode 100644 index 0000000..b8fe952 --- /dev/null +++ b/Durckerverwaltung Static/Drucker.cs @@ -0,0 +1,48 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Durckerverwaltung_Static +{ + class Drucker + { + private static Queue druckWarteschlange = new Queue(); + private Queue druckverlauf; + public static int anzAufträge { get; private set; } + + public static int anzAbgschlosseneAufträge { get; private set; } + public static int seitenGesamt { get; private set; } + public static int gedrucktGesamt { get; private set; } + + public Drucker() + { + //Druckhistorie + druckverlauf = new Queue(); + } + + public static void druckEinreihen(int seiten) + { + druckWarteschlange.Enqueue(seiten); + seitenGesamt += seiten; + anzAufträge++; + } + + + public void drucken() + { + int auftrag; + + if (druckWarteschlange.Count > 0) + { + auftrag = druckWarteschlange.Dequeue(); + druckverlauf.Enqueue(auftrag); + gedrucktGesamt += auftrag; + } + anzAufträge--; + anzAbgschlosseneAufträge++; + + } + } +} diff --git a/Durckerverwaltung Static/Durckerverwaltung Static.csproj b/Durckerverwaltung Static/Durckerverwaltung Static.csproj new file mode 100644 index 0000000..92d9e6b --- /dev/null +++ b/Durckerverwaltung Static/Durckerverwaltung Static.csproj @@ -0,0 +1,91 @@ + + + + + Debug + AnyCPU + {3C5917FF-1DA6-473B-A935-1695C2B7694C} + WinExe + Properties + Durckerverwaltung_Static + Durckerverwaltung Static + v4.5.2 + 512 + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + Form + + + Form1.cs + + + + + Form1.cs + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + + + + + \ No newline at end of file diff --git a/Durckerverwaltung Static/Form1.Designer.cs b/Durckerverwaltung Static/Form1.Designer.cs new file mode 100644 index 0000000..1f4bcbc --- /dev/null +++ b/Durckerverwaltung Static/Form1.Designer.cs @@ -0,0 +1,271 @@ +namespace Durckerverwaltung_Static +{ + partial class Form1 + { + /// + /// Erforderliche Designervariable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Verwendete Ressourcen bereinigen. + /// + /// True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Vom Windows Form-Designer generierter Code + + /// + /// Erforderliche Methode für die Designerunterstützung. + /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden. + /// + private void InitializeComponent() + { + this.groupBox1 = new System.Windows.Forms.GroupBox(); + this.buttonAbsenden = new System.Windows.Forms.Button(); + this.label1 = new System.Windows.Forms.Label(); + this.textBoxAnzSeiten = new System.Windows.Forms.TextBox(); + this.groupBox2 = new System.Windows.Forms.GroupBox(); + this.buttonDruck4 = new System.Windows.Forms.Button(); + this.buttonDruck3 = new System.Windows.Forms.Button(); + this.buttonDruck2 = new System.Windows.Forms.Button(); + this.buttonDruck1 = new System.Windows.Forms.Button(); + this.buttonDruck0 = new System.Windows.Forms.Button(); + this.groupBox3 = new System.Windows.Forms.GroupBox(); + this.label5 = new System.Windows.Forms.Label(); + this.textBoxSeitenGedruckt = new System.Windows.Forms.TextBox(); + this.label4 = new System.Windows.Forms.Label(); + this.textBoxAuftragFertig = new System.Windows.Forms.TextBox(); + this.label3 = new System.Windows.Forms.Label(); + this.textBoxAuftragOffen = new System.Windows.Forms.TextBox(); + this.label2 = new System.Windows.Forms.Label(); + this.groupBox1.SuspendLayout(); + this.groupBox2.SuspendLayout(); + this.groupBox3.SuspendLayout(); + this.SuspendLayout(); + // + // groupBox1 + // + this.groupBox1.Controls.Add(this.buttonAbsenden); + this.groupBox1.Controls.Add(this.label1); + this.groupBox1.Controls.Add(this.textBoxAnzSeiten); + this.groupBox1.Location = new System.Drawing.Point(13, 13); + this.groupBox1.Name = "groupBox1"; + this.groupBox1.Size = new System.Drawing.Size(173, 86); + this.groupBox1.TabIndex = 0; + this.groupBox1.TabStop = false; + this.groupBox1.Text = "Eingang Druckauftrag"; + // + // buttonAbsenden + // + this.buttonAbsenden.Location = new System.Drawing.Point(7, 47); + this.buttonAbsenden.Name = "buttonAbsenden"; + this.buttonAbsenden.Size = new System.Drawing.Size(153, 23); + this.buttonAbsenden.TabIndex = 2; + this.buttonAbsenden.Text = "absenden"; + this.buttonAbsenden.UseVisualStyleBackColor = true; + this.buttonAbsenden.Click += new System.EventHandler(this.buttonAbsenden_Click); + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Location = new System.Drawing.Point(82, 26); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(37, 13); + this.label1.TabIndex = 1; + this.label1.Text = "Seiten"; + // + // textBoxAnzSeiten + // + this.textBoxAnzSeiten.Location = new System.Drawing.Point(7, 20); + this.textBoxAnzSeiten.Name = "textBoxAnzSeiten"; + this.textBoxAnzSeiten.Size = new System.Drawing.Size(68, 20); + this.textBoxAnzSeiten.TabIndex = 0; + // + // groupBox2 + // + this.groupBox2.Controls.Add(this.buttonDruck4); + this.groupBox2.Controls.Add(this.buttonDruck3); + this.groupBox2.Controls.Add(this.buttonDruck2); + this.groupBox2.Controls.Add(this.buttonDruck1); + this.groupBox2.Controls.Add(this.buttonDruck0); + this.groupBox2.Location = new System.Drawing.Point(13, 117); + this.groupBox2.Name = "groupBox2"; + this.groupBox2.Size = new System.Drawing.Size(173, 182); + this.groupBox2.TabIndex = 1; + this.groupBox2.TabStop = false; + this.groupBox2.Text = "Ausführung Druckauftrag"; + // + // buttonDruck4 + // + this.buttonDruck4.Location = new System.Drawing.Point(6, 136); + this.buttonDruck4.Name = "buttonDruck4"; + this.buttonDruck4.Size = new System.Drawing.Size(153, 23); + this.buttonDruck4.TabIndex = 4; + this.buttonDruck4.Text = "Drucker 4"; + this.buttonDruck4.UseVisualStyleBackColor = true; + this.buttonDruck4.Click += new System.EventHandler(this.buttonDruck4_Click); + // + // buttonDruck3 + // + this.buttonDruck3.Location = new System.Drawing.Point(7, 107); + this.buttonDruck3.Name = "buttonDruck3"; + this.buttonDruck3.Size = new System.Drawing.Size(153, 23); + this.buttonDruck3.TabIndex = 3; + this.buttonDruck3.Text = "Drucker 3"; + this.buttonDruck3.UseVisualStyleBackColor = true; + this.buttonDruck3.Click += new System.EventHandler(this.buttonDruck3_Click); + // + // buttonDruck2 + // + this.buttonDruck2.Location = new System.Drawing.Point(7, 78); + this.buttonDruck2.Name = "buttonDruck2"; + this.buttonDruck2.Size = new System.Drawing.Size(153, 23); + this.buttonDruck2.TabIndex = 2; + this.buttonDruck2.Text = "Drucker 2"; + this.buttonDruck2.UseVisualStyleBackColor = true; + this.buttonDruck2.Click += new System.EventHandler(this.buttonDruck2_Click); + // + // buttonDruck1 + // + this.buttonDruck1.Location = new System.Drawing.Point(7, 49); + this.buttonDruck1.Name = "buttonDruck1"; + this.buttonDruck1.Size = new System.Drawing.Size(153, 23); + this.buttonDruck1.TabIndex = 1; + this.buttonDruck1.Text = "Drucker 1"; + this.buttonDruck1.UseVisualStyleBackColor = true; + this.buttonDruck1.Click += new System.EventHandler(this.buttonDruck1_Click); + // + // buttonDruck0 + // + this.buttonDruck0.Location = new System.Drawing.Point(7, 20); + this.buttonDruck0.Name = "buttonDruck0"; + this.buttonDruck0.Size = new System.Drawing.Size(153, 23); + this.buttonDruck0.TabIndex = 0; + this.buttonDruck0.Text = "Drucker 0"; + this.buttonDruck0.UseVisualStyleBackColor = true; + this.buttonDruck0.Click += new System.EventHandler(this.buttonDruck0_Click); + // + // groupBox3 + // + this.groupBox3.Controls.Add(this.label5); + this.groupBox3.Controls.Add(this.textBoxSeitenGedruckt); + this.groupBox3.Controls.Add(this.label4); + this.groupBox3.Controls.Add(this.textBoxAuftragFertig); + this.groupBox3.Controls.Add(this.label3); + this.groupBox3.Controls.Add(this.textBoxAuftragOffen); + this.groupBox3.Controls.Add(this.label2); + this.groupBox3.Location = new System.Drawing.Point(193, 117); + this.groupBox3.Name = "groupBox3"; + this.groupBox3.Size = new System.Drawing.Size(203, 182); + this.groupBox3.TabIndex = 2; + this.groupBox3.TabStop = false; + this.groupBox3.Text = "Statistik Druckauftrag"; + // + // label5 + // + this.label5.AutoSize = true; + this.label5.Location = new System.Drawing.Point(7, 107); + this.label5.Name = "label5"; + this.label5.Size = new System.Drawing.Size(70, 13); + this.label5.TabIndex = 6; + this.label5.Text = "letzter Druck:"; + // + // textBoxSeitenGedruckt + // + this.textBoxSeitenGedruckt.Location = new System.Drawing.Point(112, 81); + this.textBoxSeitenGedruckt.Name = "textBoxSeitenGedruckt"; + this.textBoxSeitenGedruckt.Size = new System.Drawing.Size(63, 20); + this.textBoxSeitenGedruckt.TabIndex = 5; + // + // label4 + // + this.label4.AutoSize = true; + this.label4.Location = new System.Drawing.Point(7, 84); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(88, 13); + this.label4.TabIndex = 4; + this.label4.Text = "gedruckte Seiten"; + // + // textBoxAuftragFertig + // + this.textBoxAuftragFertig.Location = new System.Drawing.Point(112, 52); + this.textBoxAuftragFertig.Name = "textBoxAuftragFertig"; + this.textBoxAuftragFertig.Size = new System.Drawing.Size(63, 20); + this.textBoxAuftragFertig.TabIndex = 3; + // + // label3 + // + this.label3.AutoSize = true; + this.label3.Location = new System.Drawing.Point(7, 55); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(79, 13); + this.label3.TabIndex = 2; + this.label3.Text = "fertige Aufträge"; + // + // textBoxAuftragOffen + // + this.textBoxAuftragOffen.Location = new System.Drawing.Point(112, 26); + this.textBoxAuftragOffen.Name = "textBoxAuftragOffen"; + this.textBoxAuftragOffen.Size = new System.Drawing.Size(63, 20); + this.textBoxAuftragOffen.TabIndex = 1; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Location = new System.Drawing.Point(7, 29); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(80, 13); + this.label2.TabIndex = 0; + this.label2.Text = "offene Aufträge"; + // + // Form1 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(409, 309); + this.Controls.Add(this.groupBox3); + this.Controls.Add(this.groupBox2); + this.Controls.Add(this.groupBox1); + this.Name = "Form1"; + this.Text = "Druckerverwaltung"; + this.Load += new System.EventHandler(this.Form1_Load); + this.groupBox1.ResumeLayout(false); + this.groupBox1.PerformLayout(); + this.groupBox2.ResumeLayout(false); + this.groupBox3.ResumeLayout(false); + this.groupBox3.PerformLayout(); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.GroupBox groupBox1; + private System.Windows.Forms.Button buttonAbsenden; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.TextBox textBoxAnzSeiten; + private System.Windows.Forms.GroupBox groupBox2; + private System.Windows.Forms.Button buttonDruck4; + private System.Windows.Forms.Button buttonDruck3; + private System.Windows.Forms.Button buttonDruck2; + private System.Windows.Forms.Button buttonDruck1; + private System.Windows.Forms.Button buttonDruck0; + private System.Windows.Forms.GroupBox groupBox3; + private System.Windows.Forms.TextBox textBoxSeitenGedruckt; + private System.Windows.Forms.Label label4; + private System.Windows.Forms.TextBox textBoxAuftragFertig; + private System.Windows.Forms.Label label3; + private System.Windows.Forms.TextBox textBoxAuftragOffen; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.Label label5; + } +} + diff --git a/Durckerverwaltung Static/Form1.cs b/Durckerverwaltung Static/Form1.cs new file mode 100644 index 0000000..628e0f5 --- /dev/null +++ b/Durckerverwaltung Static/Form1.cs @@ -0,0 +1,81 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Durckerverwaltung_Static +{ + public partial class Form1 : Form + { + Drucker drucker0 = new Drucker(); + Drucker drucker1 = new Drucker(); + Drucker drucker2 = new Drucker(); + Drucker drucker3 = new Drucker(); + Drucker drucker4 = new Drucker(); + + + public Form1() + { + InitializeComponent(); + } + + private void buttonAbsenden_Click(object sender, EventArgs e) + { + Drucker.druckEinreihen(Convert.ToInt32(textBoxAnzSeiten.Text)); + updateStatistik(); + } + + private void Form1_Load(object sender, EventArgs e) + { + textBoxAuftragFertig.Text = "0"; + textBoxAuftragOffen.Text = "0"; + textBoxSeitenGedruckt.Text = "0"; + } + + private void buttonDruck0_Click(object sender, EventArgs e) + { + drucker0.drucken(); + updateStatistik(); + } + + private void buttonDruck1_Click(object sender, EventArgs e) + { + drucker1.drucken(); + updateStatistik(); + } + + private void buttonDruck2_Click(object sender, EventArgs e) + { + drucker2.drucken(); + updateStatistik(); + } + + private void buttonDruck3_Click(object sender, EventArgs e) + { + drucker3.drucken(); + updateStatistik(); + } + + private void buttonDruck4_Click(object sender, EventArgs e) + { + drucker4.drucken(); + updateStatistik(); + } + + private void updateStatistik() + { + textBoxAuftragFertig.Clear(); + textBoxAuftragOffen.Clear(); + textBoxSeitenGedruckt.Clear(); + + textBoxAuftragFertig.Text = Convert.ToString(Drucker.anzAbgschlosseneAufträge); + textBoxAuftragOffen.Text = Convert.ToString(Drucker.anzAufträge); + textBoxSeitenGedruckt.Text = Convert.ToString(Drucker.gedrucktGesamt); + } + } +} diff --git a/Durckerverwaltung Static/Form1.resx b/Durckerverwaltung Static/Form1.resx new file mode 100644 index 0000000..29dcb1b --- /dev/null +++ b/Durckerverwaltung Static/Form1.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Durckerverwaltung Static/Program.cs b/Durckerverwaltung Static/Program.cs new file mode 100644 index 0000000..1996798 --- /dev/null +++ b/Durckerverwaltung Static/Program.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Durckerverwaltung_Static +{ + static class Program + { + /// + /// Der Haupteinstiegspunkt für die Anwendung. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + + + } + } +} diff --git a/Durckerverwaltung Static/Properties/AssemblyInfo.cs b/Durckerverwaltung Static/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..b60af07 --- /dev/null +++ b/Durckerverwaltung Static/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// Allgemeine Informationen über eine Assembly werden über die folgenden +// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, +// die einer Assembly zugeordnet sind. +[assembly: AssemblyTitle("Durckerverwaltung Static")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Durckerverwaltung Static")] +[assembly: AssemblyCopyright("Copyright © 2017")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Durch Festlegen von ComVisible auf "false" werden die Typen in dieser Assembly unsichtbar +// für COM-Komponenten. Wenn Sie auf einen Typ in dieser Assembly von +// COM aus zugreifen müssen, sollten Sie das ComVisible-Attribut für diesen Typ auf "True" festlegen. +[assembly: ComVisible(false)] + +// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird +[assembly: Guid("3c5917ff-1da6-473b-a935-1695c2b7694c")] + +// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: +// +// Hauptversion +// Nebenversion +// Buildnummer +// Revision +// +// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern +// übernehmen, indem Sie "*" eingeben: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Durckerverwaltung Static/Properties/Resources.Designer.cs b/Durckerverwaltung Static/Properties/Resources.Designer.cs new file mode 100644 index 0000000..e9084ef --- /dev/null +++ b/Durckerverwaltung Static/Properties/Resources.Designer.cs @@ -0,0 +1,71 @@ +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion: 4.0.30319.42000 +// +// Änderungen an dieser Datei können fehlerhaftes Verhalten verursachen und gehen verloren, wenn +// der Code neu generiert wird. +// +//------------------------------------------------------------------------------ + +namespace Durckerverwaltung_Static.Properties +{ + + + /// + /// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. + /// + // Diese Klasse wurde von der StronglyTypedResourceBuilder-Klasse + // über ein Tool wie ResGen oder Visual Studio automatisch generiert. + // Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen + // mit der Option /str erneut aus, oder erstellen Sie Ihr VS-Projekt neu. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources + { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() + { + } + + /// + /// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager + { + get + { + if ((resourceMan == null)) + { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Durckerverwaltung_Static.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle + /// Ressourcenlookups, die diese stark typisierte Ressourcenklasse verwenden. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture + { + get + { + return resourceCulture; + } + set + { + resourceCulture = value; + } + } + } +} diff --git a/Durckerverwaltung Static/Properties/Resources.resx b/Durckerverwaltung Static/Properties/Resources.resx new file mode 100644 index 0000000..ffecec8 --- /dev/null +++ b/Durckerverwaltung Static/Properties/Resources.resx @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Durckerverwaltung Static/Properties/Settings.Designer.cs b/Durckerverwaltung Static/Properties/Settings.Designer.cs new file mode 100644 index 0000000..744ea5a --- /dev/null +++ b/Durckerverwaltung Static/Properties/Settings.Designer.cs @@ -0,0 +1,30 @@ +//------------------------------------------------------------------------------ +// +// 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. +// +//------------------------------------------------------------------------------ + +namespace Durckerverwaltung_Static.Properties +{ + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase + { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default + { + get + { + return defaultInstance; + } + } + } +} diff --git a/Durckerverwaltung Static/Properties/Settings.settings b/Durckerverwaltung Static/Properties/Settings.settings new file mode 100644 index 0000000..abf36c5 --- /dev/null +++ b/Durckerverwaltung Static/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + +