From 3e2d03fcacc7f34b24a59fafe38b4aac6a55fac1 Mon Sep 17 00:00:00 2001 From: Thomas G <62822072+Thomasluigi07@users.noreply.github.com> Date: Thu, 7 Jul 2022 22:14:03 +1000 Subject: [PATCH] added stuff --- Form1.Designer.cs | 15 +++++++++--- Form1.cs | 4 +-- Form1.resx | 62 +---------------------------------------------- Program.cs | 2 +- 4 files changed, 15 insertions(+), 68 deletions(-) diff --git a/Form1.Designer.cs b/Form1.Designer.cs index 6095ecc..0a4d60e 100644 --- a/Form1.Designer.cs +++ b/Form1.Designer.cs @@ -1,6 +1,6 @@ namespace ARCHBLOXBootstrapper { - partial class Form1 + partial class ARCHBLOX { /// /// Required designer variable. @@ -28,10 +28,17 @@ /// private void InitializeComponent() { - this.components = new System.ComponentModel.Container(); + this.SuspendLayout(); + // + // ARCHBLOX + // + this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(800, 450); - this.Text = "Form1"; + this.ClientSize = new System.Drawing.Size(577, 134); + this.Name = "ARCHBLOX"; + this.Text = "ARCHBLOX"; + this.ResumeLayout(false); + } #endregion diff --git a/Form1.cs b/Form1.cs index 809fa32..7c00816 100644 --- a/Form1.cs +++ b/Form1.cs @@ -10,9 +10,9 @@ using System.Windows.Forms; namespace ARCHBLOXBootstrapper { - public partial class Form1 : Form + public partial class ARCHBLOX : Form { - public Form1() + public ARCHBLOX() { InitializeComponent(); } diff --git a/Form1.resx b/Form1.resx index 1af7de1..f298a7b 100644 --- a/Form1.resx +++ b/Form1.resx @@ -1,64 +1,4 @@ - - - + diff --git a/Program.cs b/Program.cs index 4732da3..c253f58 100644 --- a/Program.cs +++ b/Program.cs @@ -17,7 +17,7 @@ namespace ARCHBLOXBootstrapper Application.SetHighDpiMode(HighDpiMode.SystemAware); Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); - Application.Run(new Form1()); + Application.Run(new ARCHBLOX()); } } }