diff --git a/AirbusBase/AirbusBase/Form1.Designer.cs b/AirbusBase/AirbusBase/Form1.Designer.cs new file mode 100644 index 0000000..673abf2 --- /dev/null +++ b/AirbusBase/AirbusBase/Form1.Designer.cs @@ -0,0 +1,46 @@ +namespace AirbusBase +{ + partial class Form1 + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + SuspendLayout(); + // + // Form1 + // + AutoScaleDimensions = new SizeF(8F, 20F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(800, 450); + Name = "Form1"; + Text = "Form1"; + Load += Form1_Load; + ResumeLayout(false); + } + + #endregion + } +} \ No newline at end of file diff --git a/AirbusBase/AirbusBase/Form1.cs b/AirbusBase/AirbusBase/Form1.cs new file mode 100644 index 0000000..abf3ae2 --- /dev/null +++ b/AirbusBase/AirbusBase/Form1.cs @@ -0,0 +1,15 @@ +namespace AirbusBase +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + + private void Form1_Load(object sender, EventArgs e) + { + + } + } +} \ No newline at end of file diff --git a/AirbusBase/AirbusBase/Form1.resx b/AirbusBase/AirbusBase/Form1.resx new file mode 100644 index 0000000..a395bff --- /dev/null +++ b/AirbusBase/AirbusBase/Form1.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file