From 1bfc6e4396c3fd97be7666dbdcb76bca78519c5f Mon Sep 17 00:00:00 2001
From: Klaus Merzbach <me@merzbach.com>
Date: Thu, 30 Jan 2020 10:15:14 +0100
Subject: [PATCH] =?UTF-8?q?Formular=20f=C3=BCr=20Einstellungen=20hinzugef?=
 =?UTF-8?q?=C3=BCgt?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 Wetterstation/Settings.Designer.cs | 39 ++++++++++++++++++++++++++++++
 Wetterstation/Settings.cs          | 20 +++++++++++++++
 2 files changed, 59 insertions(+)
 create mode 100644 Wetterstation/Settings.Designer.cs
 create mode 100644 Wetterstation/Settings.cs

diff --git a/Wetterstation/Settings.Designer.cs b/Wetterstation/Settings.Designer.cs
new file mode 100644
index 0000000..dcb6ba7
--- /dev/null
+++ b/Wetterstation/Settings.Designer.cs
@@ -0,0 +1,39 @@
+namespace Wetterstation
+{
+    partial class Settings
+    {
+        /// <summary>
+        /// Required designer variable.
+        /// </summary>
+        private System.ComponentModel.IContainer components = null;
+
+        /// <summary>
+        /// Clean up any resources being used.
+        /// </summary>
+        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
+        protected override void Dispose(bool disposing)
+        {
+            if (disposing && (components != null))
+            {
+                components.Dispose();
+            }
+            base.Dispose(disposing);
+        }
+
+        #region Windows Form Designer generated code
+
+        /// <summary>
+        /// Required method for Designer support - do not modify
+        /// the contents of this method with the code editor.
+        /// </summary>
+        private void InitializeComponent()
+        {
+            this.components = new System.ComponentModel.Container();
+            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+            this.ClientSize = new System.Drawing.Size(800, 450);
+            this.Text = "Settings";
+        }
+
+        #endregion
+    }
+}
\ No newline at end of file
diff --git a/Wetterstation/Settings.cs b/Wetterstation/Settings.cs
new file mode 100644
index 0000000..508c405
--- /dev/null
+++ b/Wetterstation/Settings.cs
@@ -0,0 +1,20 @@
+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 Wetterstation
+{
+    public partial class Settings : Form
+    {
+        public Settings()
+        {
+            InitializeComponent();
+        }
+    }
+}
-- 
GitLab