From 99ef5f067e335a0f4c09b37eb17b6af0a51c1d4e Mon Sep 17 00:00:00 2001
From: Klaus Merzbach <me@merzbach.com>
Date: Thu, 30 Jan 2020 15:41:34 +0100
Subject: [PATCH] Settingsform erstellt

---
 Wetterstation/Form1.Designer.cs               |  43 ++-
 Wetterstation/Program.cs                      |   3 +-
 .../Properties/Resources.Designer.cs          |  10 +
 Wetterstation/Properties/Resources.resx       |  11 +-
 Wetterstation/Resources/Systemknopf.png       | Bin 0 -> 5872 bytes
 Wetterstation/Settings.Designer.cs            | 269 +++++++++++++++++-
 Wetterstation/Settings.cs                     |  13 +-
 Wetterstation/Wetterstation.csproj            |   3 +
 8 files changed, 320 insertions(+), 32 deletions(-)
 create mode 100644 Wetterstation/Resources/Systemknopf.png

diff --git a/Wetterstation/Form1.Designer.cs b/Wetterstation/Form1.Designer.cs
index 49e1249..55341fb 100644
--- a/Wetterstation/Form1.Designer.cs
+++ b/Wetterstation/Form1.Designer.cs
@@ -36,10 +36,10 @@ namespace Wetterstation
         /// </summary>
         private void InitializeComponent()
         {
-            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea5 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
-            System.Windows.Forms.DataVisualization.Charting.Legend legend5 = new System.Windows.Forms.DataVisualization.Charting.Legend();
-            System.Windows.Forms.DataVisualization.Charting.Series series5 = new System.Windows.Forms.DataVisualization.Charting.Series();
-            System.Windows.Forms.DataVisualization.Charting.Title title5 = new System.Windows.Forms.DataVisualization.Charting.Title();
+            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea2 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
+            System.Windows.Forms.DataVisualization.Charting.Legend legend2 = new System.Windows.Forms.DataVisualization.Charting.Legend();
+            System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
+            System.Windows.Forms.DataVisualization.Charting.Title title2 = new System.Windows.Forms.DataVisualization.Charting.Title();
             this.lbTextInnentemp = new System.Windows.Forms.Label();
             this.lbTextAussentemp = new System.Windows.Forms.Label();
             this.lbTextWindSpeed = new System.Windows.Forms.Label();
@@ -75,6 +75,7 @@ namespace Wetterstation
             this.lbHintergrund = new System.Windows.Forms.Label();
             this.lbCity = new System.Windows.Forms.Label();
             this.picTg1 = new System.Windows.Forms.PictureBox();
+            this.btSystemKnopf = new System.Windows.Forms.Button();
             ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
             ((System.ComponentModel.ISupportInitialize)(this.picTg2)).BeginInit();
             ((System.ComponentModel.ISupportInitialize)(this.picTg3)).BeginInit();
@@ -477,22 +478,22 @@ namespace Wetterstation
             // chart1
             // 
             this.chart1.Anchor = System.Windows.Forms.AnchorStyles.None;
-            chartArea5.Name = "ChartArea1";
-            this.chart1.ChartAreas.Add(chartArea5);
-            legend5.Name = "Legend1";
-            this.chart1.Legends.Add(legend5);
+            chartArea2.Name = "ChartArea1";
+            this.chart1.ChartAreas.Add(chartArea2);
+            legend2.Name = "Legend1";
+            this.chart1.Legends.Add(legend2);
             this.chart1.Location = new System.Drawing.Point(28, 546);
             this.chart1.Name = "chart1";
             this.chart1.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Excel;
-            series5.ChartArea = "ChartArea1";
-            series5.Legend = "Legend1";
-            series5.Name = "Series1";
-            this.chart1.Series.Add(series5);
+            series2.ChartArea = "ChartArea1";
+            series2.Legend = "Legend1";
+            series2.Name = "Series1";
+            this.chart1.Series.Add(series2);
             this.chart1.Size = new System.Drawing.Size(743, 107);
             this.chart1.TabIndex = 41;
             this.chart1.Text = "chTendenz";
-            title5.Name = "Title1";
-            this.chart1.Titles.Add(title5);
+            title2.Name = "Title1";
+            this.chart1.Titles.Add(title2);
             // 
             // lbHintergrund
             // 
@@ -526,12 +527,25 @@ namespace Wetterstation
             this.picTg1.TabIndex = 44;
             this.picTg1.TabStop = false;
             // 
+            // btSystemKnopf
+            // 
+            this.btSystemKnopf.BackColor = System.Drawing.Color.Transparent;
+            this.btSystemKnopf.BackgroundImage = global::Wetterstation.Properties.Resources.Systemknopf;
+            this.btSystemKnopf.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
+            this.btSystemKnopf.Location = new System.Drawing.Point(917, 576);
+            this.btSystemKnopf.Name = "btSystemKnopf";
+            this.btSystemKnopf.Size = new System.Drawing.Size(50, 50);
+            this.btSystemKnopf.TabIndex = 46;
+            this.btSystemKnopf.TextAlign = System.Drawing.ContentAlignment.TopLeft;
+            this.btSystemKnopf.UseVisualStyleBackColor = false;
+            // 
             // Hintergrund
             // 
             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
             this.BackgroundImage = global::Wetterstation.Properties.Resources.Strand;
             this.ClientSize = new System.Drawing.Size(1008, 729);
+            this.Controls.Add(this.btSystemKnopf);
             this.Controls.Add(this.picTg1);
             this.Controls.Add(this.lbWT1);
             this.Controls.Add(this.lbWt2);
@@ -619,6 +633,7 @@ namespace Wetterstation
         private Label lbHintergrund;
         private Label lbCity;
         private PictureBox picTg1;
+        private Button btSystemKnopf;
     }
 }
 
diff --git a/Wetterstation/Program.cs b/Wetterstation/Program.cs
index 704b24d..234acdd 100644
--- a/Wetterstation/Program.cs
+++ b/Wetterstation/Program.cs
@@ -16,7 +16,8 @@ namespace Wetterstation
         {
             Application.EnableVisualStyles();
             Application.SetCompatibleTextRenderingDefault(false);
-            Application.Run(new Hintergrund());
+            //           Application.Run(new Hintergrund());
+            Application.Run(new Settings());
         }
     }
 }
diff --git a/Wetterstation/Properties/Resources.Designer.cs b/Wetterstation/Properties/Resources.Designer.cs
index 62a6ebf..0aeec61 100644
--- a/Wetterstation/Properties/Resources.Designer.cs
+++ b/Wetterstation/Properties/Resources.Designer.cs
@@ -179,5 +179,15 @@ namespace Wetterstation.Properties {
                 return ((System.Drawing.Bitmap)(obj));
             }
         }
+        
+        /// <summary>
+        ///   Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap.
+        /// </summary>
+        internal static System.Drawing.Bitmap Systemknopf {
+            get {
+                object obj = ResourceManager.GetObject("Systemknopf", resourceCulture);
+                return ((System.Drawing.Bitmap)(obj));
+            }
+        }
     }
 }
diff --git a/Wetterstation/Properties/Resources.resx b/Wetterstation/Properties/Resources.resx
index 7d64d59..9555125 100644
--- a/Wetterstation/Properties/Resources.resx
+++ b/Wetterstation/Properties/Resources.resx
@@ -118,8 +118,8 @@
     <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
   </resheader>
   <assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
-  <data name="earth" type="System.Resources.ResXFileRef, System.Windows.Forms">
-    <value>..\Resources\earth.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
+  <data name="03n_small" type="System.Resources.ResXFileRef, System.Windows.Forms">
+    <value>..\Resources\03n_small.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
   </data>
   <data name="Kompassrose" type="System.Resources.ResXFileRef, System.Windows.Forms">
     <value>..\Resources\Kompassrose.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
@@ -139,8 +139,8 @@
   <data name="13n_small" type="System.Resources.ResXFileRef, System.Windows.Forms">
     <value>..\Resources\13n_small.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
   </data>
-  <data name="03n_small" type="System.Resources.ResXFileRef, System.Windows.Forms">
-    <value>..\Resources\03n_small.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
+  <data name="earth" type="System.Resources.ResXFileRef, System.Windows.Forms">
+    <value>..\Resources\earth.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
   </data>
   <data name="02d_small" type="System.Resources.ResXFileRef, System.Windows.Forms">
     <value>..\Resources\02d_small.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
@@ -154,4 +154,7 @@
   <data name="Strand" type="System.Resources.ResXFileRef, System.Windows.Forms">
     <value>..\Resources\Strand.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
   </data>
+  <data name="Systemknopf" type="System.Resources.ResXFileRef, System.Windows.Forms">
+    <value>..\Resources\Systemknopf.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
+  </data>
 </root>
\ No newline at end of file
diff --git a/Wetterstation/Resources/Systemknopf.png b/Wetterstation/Resources/Systemknopf.png
new file mode 100644
index 0000000000000000000000000000000000000000..43af7fe473039e92861a30763ba298949c0cf3d1
GIT binary patch
literal 5872
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
GLSTZMd4H?`

literal 0
HcmV?d00001

diff --git a/Wetterstation/Settings.Designer.cs b/Wetterstation/Settings.Designer.cs
index d54c618..00ad189 100644
--- a/Wetterstation/Settings.Designer.cs
+++ b/Wetterstation/Settings.Designer.cs
@@ -28,24 +28,252 @@
         /// </summary>
         private void InitializeComponent()
         {
-            this.label1 = new System.Windows.Forms.Label();
+            this.lbSettingsHost = new System.Windows.Forms.Label();
+            this.tbSettingsHost = new System.Windows.Forms.TextBox();
+            this.lbSettingsPort = new System.Windows.Forms.Label();
+            this.tbSettingsPort = new System.Windows.Forms.TextBox();
+            this.lbSettingsClient = new System.Windows.Forms.Label();
+            this.tbSettingsClient = new System.Windows.Forms.TextBox();
+            this.tbSettingsUser = new System.Windows.Forms.TextBox();
+            this.lbSettingsUser = new System.Windows.Forms.Label();
+            this.lbSettingsPasswort = new System.Windows.Forms.Label();
+            this.textBox1 = new System.Windows.Forms.TextBox();
+            this.lbSettingsTopic = new System.Windows.Forms.Label();
+            this.tbSettingsTopic = new System.Windows.Forms.TextBox();
+            this.lbStettingsFullTopic = new System.Windows.Forms.Label();
+            this.textBox2 = new System.Windows.Forms.TextBox();
+            this.lbSettingsOrt = new System.Windows.Forms.Label();
+            this.textBox3 = new System.Windows.Forms.TextBox();
+            this.lbSettingsLand = new System.Windows.Forms.Label();
+            this.tbSettingsLand = new System.Windows.Forms.TextBox();
             this.SuspendLayout();
             // 
-            // label1
+            // lbSettingsHost
             // 
-            this.label1.AutoSize = true;
-            this.label1.Location = new System.Drawing.Point(13, 13);
-            this.label1.Name = "label1";
-            this.label1.Size = new System.Drawing.Size(93, 17);
-            this.label1.TabIndex = 0;
-            this.label1.Text = "Einstellungen";
+            this.lbSettingsHost.AutoSize = true;
+            this.lbSettingsHost.BackColor = System.Drawing.Color.Transparent;
+            this.lbSettingsHost.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.lbSettingsHost.ForeColor = System.Drawing.Color.White;
+            this.lbSettingsHost.Location = new System.Drawing.Point(20, 34);
+            this.lbSettingsHost.Name = "lbSettingsHost";
+            this.lbSettingsHost.Size = new System.Drawing.Size(55, 19);
+            this.lbSettingsHost.TabIndex = 0;
+            this.lbSettingsHost.Text = "Host()";
+            // 
+            // tbSettingsHost
+            // 
+            this.tbSettingsHost.Anchor = System.Windows.Forms.AnchorStyles.None;
+            this.tbSettingsHost.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.tbSettingsHost.Location = new System.Drawing.Point(7, 55);
+            this.tbSettingsHost.MinimumSize = new System.Drawing.Size(300, 30);
+            this.tbSettingsHost.Name = "tbSettingsHost";
+            this.tbSettingsHost.Size = new System.Drawing.Size(300, 30);
+            this.tbSettingsHost.TabIndex = 4;
+            // 
+            // lbSettingsPort
+            // 
+            this.lbSettingsPort.AutoSize = true;
+            this.lbSettingsPort.BackColor = System.Drawing.Color.Transparent;
+            this.lbSettingsPort.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.lbSettingsPort.ForeColor = System.Drawing.Color.White;
+            this.lbSettingsPort.Location = new System.Drawing.Point(20, 98);
+            this.lbSettingsPort.Name = "lbSettingsPort";
+            this.lbSettingsPort.Size = new System.Drawing.Size(91, 19);
+            this.lbSettingsPort.TabIndex = 5;
+            this.lbSettingsPort.Text = "Port (1883)";
+            // 
+            // tbSettingsPort
+            // 
+            this.tbSettingsPort.Anchor = System.Windows.Forms.AnchorStyles.None;
+            this.tbSettingsPort.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.tbSettingsPort.Location = new System.Drawing.Point(7, 117);
+            this.tbSettingsPort.MinimumSize = new System.Drawing.Size(300, 30);
+            this.tbSettingsPort.Name = "tbSettingsPort";
+            this.tbSettingsPort.Size = new System.Drawing.Size(300, 30);
+            this.tbSettingsPort.TabIndex = 6;
+            // 
+            // lbSettingsClient
+            // 
+            this.lbSettingsClient.AutoSize = true;
+            this.lbSettingsClient.BackColor = System.Drawing.Color.Transparent;
+            this.lbSettingsClient.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.lbSettingsClient.ForeColor = System.Drawing.Color.White;
+            this.lbSettingsClient.Location = new System.Drawing.Point(20, 163);
+            this.lbSettingsClient.Name = "lbSettingsClient";
+            this.lbSettingsClient.Size = new System.Drawing.Size(173, 19);
+            this.lbSettingsClient.TabIndex = 7;
+            this.lbSettingsClient.Text = "Client (DVES 06236C)";
+            // 
+            // tbSettingsClient
+            // 
+            this.tbSettingsClient.Anchor = System.Windows.Forms.AnchorStyles.None;
+            this.tbSettingsClient.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.tbSettingsClient.Location = new System.Drawing.Point(8, 182);
+            this.tbSettingsClient.MinimumSize = new System.Drawing.Size(300, 30);
+            this.tbSettingsClient.Name = "tbSettingsClient";
+            this.tbSettingsClient.Size = new System.Drawing.Size(300, 30);
+            this.tbSettingsClient.TabIndex = 8;
+            // 
+            // tbSettingsUser
+            // 
+            this.tbSettingsUser.Anchor = System.Windows.Forms.AnchorStyles.None;
+            this.tbSettingsUser.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.tbSettingsUser.Location = new System.Drawing.Point(8, 248);
+            this.tbSettingsUser.MinimumSize = new System.Drawing.Size(300, 30);
+            this.tbSettingsUser.Name = "tbSettingsUser";
+            this.tbSettingsUser.Size = new System.Drawing.Size(300, 30);
+            this.tbSettingsUser.TabIndex = 9;
+            // 
+            // lbSettingsUser
+            // 
+            this.lbSettingsUser.AutoSize = true;
+            this.lbSettingsUser.BackColor = System.Drawing.Color.Transparent;
+            this.lbSettingsUser.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.lbSettingsUser.ForeColor = System.Drawing.Color.White;
+            this.lbSettingsUser.Location = new System.Drawing.Point(20, 227);
+            this.lbSettingsUser.Name = "lbSettingsUser";
+            this.lbSettingsUser.Size = new System.Drawing.Size(144, 19);
+            this.lbSettingsUser.TabIndex = 10;
+            this.lbSettingsUser.Text = "User (DVES User)";
+            // 
+            // lbSettingsPasswort
+            // 
+            this.lbSettingsPasswort.AutoSize = true;
+            this.lbSettingsPasswort.BackColor = System.Drawing.Color.Transparent;
+            this.lbSettingsPasswort.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.lbSettingsPasswort.ForeColor = System.Drawing.Color.White;
+            this.lbSettingsPasswort.Location = new System.Drawing.Point(20, 294);
+            this.lbSettingsPasswort.Name = "lbSettingsPasswort";
+            this.lbSettingsPasswort.Size = new System.Drawing.Size(99, 19);
+            this.lbSettingsPasswort.TabIndex = 11;
+            this.lbSettingsPasswort.Text = "Password #";
+            // 
+            // textBox1
+            // 
+            this.textBox1.Anchor = System.Windows.Forms.AnchorStyles.None;
+            this.textBox1.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.textBox1.Location = new System.Drawing.Point(7, 314);
+            this.textBox1.MinimumSize = new System.Drawing.Size(300, 30);
+            this.textBox1.Name = "textBox1";
+            this.textBox1.Size = new System.Drawing.Size(300, 30);
+            this.textBox1.TabIndex = 12;
+            // 
+            // lbSettingsTopic
+            // 
+            this.lbSettingsTopic.AutoSize = true;
+            this.lbSettingsTopic.BackColor = System.Drawing.Color.Transparent;
+            this.lbSettingsTopic.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.lbSettingsTopic.ForeColor = System.Drawing.Color.White;
+            this.lbSettingsTopic.Location = new System.Drawing.Point(20, 367);
+            this.lbSettingsTopic.Name = "lbSettingsTopic";
+            this.lbSettingsTopic.Size = new System.Drawing.Size(251, 19);
+            this.lbSettingsTopic.TabIndex = 13;
+            this.lbSettingsTopic.Text = "Topic = %topic% (wetterstation)";
+            // 
+            // tbSettingsTopic
+            // 
+            this.tbSettingsTopic.Anchor = System.Windows.Forms.AnchorStyles.None;
+            this.tbSettingsTopic.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.tbSettingsTopic.Location = new System.Drawing.Point(7, 386);
+            this.tbSettingsTopic.MinimumSize = new System.Drawing.Size(300, 30);
+            this.tbSettingsTopic.Name = "tbSettingsTopic";
+            this.tbSettingsTopic.Size = new System.Drawing.Size(300, 30);
+            this.tbSettingsTopic.TabIndex = 14;
+            // 
+            // lbStettingsFullTopic
+            // 
+            this.lbStettingsFullTopic.AutoSize = true;
+            this.lbStettingsFullTopic.BackColor = System.Drawing.Color.Transparent;
+            this.lbStettingsFullTopic.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.lbStettingsFullTopic.ForeColor = System.Drawing.Color.White;
+            this.lbStettingsFullTopic.Location = new System.Drawing.Point(19, 444);
+            this.lbStettingsFullTopic.Name = "lbStettingsFullTopic";
+            this.lbStettingsFullTopic.Size = new System.Drawing.Size(250, 19);
+            this.lbStettingsFullTopic.TabIndex = 15;
+            this.lbStettingsFullTopic.Text = "Full Topic (%prefix%/%topic%/)";
+            // 
+            // textBox2
+            // 
+            this.textBox2.Anchor = System.Windows.Forms.AnchorStyles.None;
+            this.textBox2.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.textBox2.Location = new System.Drawing.Point(6, 462);
+            this.textBox2.MinimumSize = new System.Drawing.Size(300, 30);
+            this.textBox2.Name = "textBox2";
+            this.textBox2.Size = new System.Drawing.Size(300, 30);
+            this.textBox2.TabIndex = 16;
+            this.textBox2.TextChanged += new System.EventHandler(this.TextBox2_TextChanged);
+            // 
+            // lbSettingsOrt
+            // 
+            this.lbSettingsOrt.AutoSize = true;
+            this.lbSettingsOrt.BackColor = System.Drawing.Color.Transparent;
+            this.lbSettingsOrt.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.lbSettingsOrt.ForeColor = System.Drawing.Color.White;
+            this.lbSettingsOrt.Location = new System.Drawing.Point(18, 520);
+            this.lbSettingsOrt.Name = "lbSettingsOrt";
+            this.lbSettingsOrt.Size = new System.Drawing.Size(91, 19);
+            this.lbSettingsOrt.TabIndex = 17;
+            this.lbSettingsOrt.Text = "Stadt / PLZ";
+            // 
+            // textBox3
+            // 
+            this.textBox3.Anchor = System.Windows.Forms.AnchorStyles.None;
+            this.textBox3.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.textBox3.Location = new System.Drawing.Point(8, 539);
+            this.textBox3.MinimumSize = new System.Drawing.Size(300, 30);
+            this.textBox3.Name = "textBox3";
+            this.textBox3.Size = new System.Drawing.Size(300, 30);
+            this.textBox3.TabIndex = 18;
+            // 
+            // lbSettingsLand
+            // 
+            this.lbSettingsLand.AutoSize = true;
+            this.lbSettingsLand.BackColor = System.Drawing.Color.Transparent;
+            this.lbSettingsLand.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.lbSettingsLand.ForeColor = System.Drawing.Color.White;
+            this.lbSettingsLand.Location = new System.Drawing.Point(25, 590);
+            this.lbSettingsLand.Name = "lbSettingsLand";
+            this.lbSettingsLand.Size = new System.Drawing.Size(168, 19);
+            this.lbSettingsLand.TabIndex = 19;
+            this.lbSettingsLand.Text = "Länderkennung (DE)";
+            this.lbSettingsLand.Click += new System.EventHandler(this.Label1_Click);
+            // 
+            // tbSettingsLand
+            // 
+            this.tbSettingsLand.Anchor = System.Windows.Forms.AnchorStyles.None;
+            this.tbSettingsLand.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.tbSettingsLand.Location = new System.Drawing.Point(13, 612);
+            this.tbSettingsLand.MinimumSize = new System.Drawing.Size(300, 30);
+            this.tbSettingsLand.Name = "tbSettingsLand";
+            this.tbSettingsLand.Size = new System.Drawing.Size(300, 30);
+            this.tbSettingsLand.TabIndex = 20;
             // 
             // Settings
             // 
-            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
+            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
-            this.ClientSize = new System.Drawing.Size(800, 450);
-            this.Controls.Add(this.label1);
+            this.BackColor = System.Drawing.Color.White;
+            this.BackgroundImage = global::Wetterstation.Properties.Resources.earth;
+            this.ClientSize = new System.Drawing.Size(568, 697);
+            this.Controls.Add(this.tbSettingsLand);
+            this.Controls.Add(this.lbSettingsLand);
+            this.Controls.Add(this.textBox3);
+            this.Controls.Add(this.lbSettingsOrt);
+            this.Controls.Add(this.textBox2);
+            this.Controls.Add(this.lbStettingsFullTopic);
+            this.Controls.Add(this.tbSettingsTopic);
+            this.Controls.Add(this.lbSettingsTopic);
+            this.Controls.Add(this.textBox1);
+            this.Controls.Add(this.lbSettingsPasswort);
+            this.Controls.Add(this.lbSettingsUser);
+            this.Controls.Add(this.tbSettingsUser);
+            this.Controls.Add(this.tbSettingsClient);
+            this.Controls.Add(this.lbSettingsClient);
+            this.Controls.Add(this.tbSettingsPort);
+            this.Controls.Add(this.lbSettingsPort);
+            this.Controls.Add(this.tbSettingsHost);
+            this.Controls.Add(this.lbSettingsHost);
+            this.Margin = new System.Windows.Forms.Padding(2);
             this.Name = "Settings";
             this.Text = "Settings";
             this.ResumeLayout(false);
@@ -55,6 +283,23 @@
 
         #endregion
 
-        private System.Windows.Forms.Label label1;
+        private System.Windows.Forms.Label lbSettingsHost;
+        private System.Windows.Forms.TextBox tbSettingsHost;
+        private System.Windows.Forms.Label lbSettingsPort;
+        private System.Windows.Forms.TextBox tbSettingsPort;
+        private System.Windows.Forms.Label lbSettingsClient;
+        private System.Windows.Forms.TextBox tbSettingsClient;
+        private System.Windows.Forms.TextBox tbSettingsUser;
+        private System.Windows.Forms.Label lbSettingsUser;
+        private System.Windows.Forms.Label lbSettingsPasswort;
+        private System.Windows.Forms.TextBox textBox1;
+        private System.Windows.Forms.Label lbSettingsTopic;
+        private System.Windows.Forms.TextBox tbSettingsTopic;
+        private System.Windows.Forms.Label lbStettingsFullTopic;
+        private System.Windows.Forms.TextBox textBox2;
+        private System.Windows.Forms.Label lbSettingsOrt;
+        private System.Windows.Forms.TextBox textBox3;
+        private System.Windows.Forms.Label lbSettingsLand;
+        private System.Windows.Forms.TextBox tbSettingsLand;
     }
 }
\ No newline at end of file
diff --git a/Wetterstation/Settings.cs b/Wetterstation/Settings.cs
index 508c405..037f27e 100644
--- a/Wetterstation/Settings.cs
+++ b/Wetterstation/Settings.cs
@@ -16,5 +16,16 @@ namespace Wetterstation
         {
             InitializeComponent();
         }
+
+        private void TextBox2_TextChanged(object sender, EventArgs e)
+        {
+
+        }
+
+        private void Label1_Click(object sender, EventArgs e)
+        {
+
+        }
     }
-}
+    }
+
diff --git a/Wetterstation/Wetterstation.csproj b/Wetterstation/Wetterstation.csproj
index 0958e3f..cb99cce 100644
--- a/Wetterstation/Wetterstation.csproj
+++ b/Wetterstation/Wetterstation.csproj
@@ -126,5 +126,8 @@
   <ItemGroup>
     <None Include="Resources\Strand.png" />
   </ItemGroup>
+  <ItemGroup>
+    <None Include="Resources\Systemknopf.png" />
+  </ItemGroup>
   <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
 </Project>
\ No newline at end of file
-- 
GitLab