diff --git a/Seaplane/Form1.cs b/Seaplane/Form1.cs deleted file mode 100644 index b0e489d..0000000 --- a/Seaplane/Form1.cs +++ /dev/null @@ -1,10 +0,0 @@ -namespace Seaplane -{ - public partial class Form1 : Form - { - public Form1() - { - InitializeComponent(); - } - } -} \ No newline at end of file diff --git a/Seaplane/Form1.Designer.cs b/Seaplane/FormSeaplane.Designer.cs similarity index 76% rename from Seaplane/Form1.Designer.cs rename to Seaplane/FormSeaplane.Designer.cs index dbb7ba8..1784e2a 100644 --- a/Seaplane/Form1.Designer.cs +++ b/Seaplane/FormSeaplane.Designer.cs @@ -1,14 +1,14 @@ namespace Seaplane { - partial class Form1 + partial class FormSeaplane { /// - /// Required designer variable. + /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// - /// Clean up any resources being used. + /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) @@ -23,15 +23,15 @@ #region Windows Form Designer generated code /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. /// 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 = "Form1"; + this.Text = "FormSeaplane"; } #endregion diff --git a/Seaplane/FormSeaplane.cs b/Seaplane/FormSeaplane.cs new file mode 100644 index 0000000..dc9664c --- /dev/null +++ b/Seaplane/FormSeaplane.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 Seaplane +{ + public partial class FormSeaplane : Form + { + public FormSeaplane() + { + InitializeComponent(); + } + } +} diff --git a/Seaplane/Form1.resx b/Seaplane/FormSeaplane.resx similarity index 100% rename from Seaplane/Form1.resx rename to Seaplane/FormSeaplane.resx