diff --git a/Wetterstation/Settings.Designer.cs b/Wetterstation/Settings.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..dcb6ba706188ef68fa5271e34dd169a8345810b2 --- /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 0000000000000000000000000000000000000000..508c4051d3ede76cc1f83349c2565524ecad5393 --- /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(); + } + } +}