This commit is contained in:
xom9kxom9k 2024-02-06 20:33:48 +04:00
parent 3137380cdb
commit 70b6a6a475
4 changed files with 26 additions and 16 deletions

View File

@ -1,10 +0,0 @@
namespace Seaplane
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
}
}

View File

@ -1,6 +1,6 @@
namespace Seaplane
{
partial class Form1
partial class FormSeaplane
{
/// <summary>
/// Required designer variable.
@ -31,7 +31,7 @@
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

20
Seaplane/FormSeaplane.cs Normal file
View File

@ -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();
}
}
}