142 lines
5.1 KiB
C#
142 lines
5.1 KiB
C#
namespace Hydroplane
|
|
{
|
|
partial class FormHydroplaneCollection
|
|
{
|
|
/// <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()
|
|
{
|
|
panel1 = new Panel();
|
|
UpdateButton = new Button();
|
|
DeleteButton = new Button();
|
|
AddButton = new Button();
|
|
InputNum = new TextBox();
|
|
label1 = new Label();
|
|
DrawPlane = new PictureBox();
|
|
panel1.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)DrawPlane).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// panel1
|
|
//
|
|
panel1.Controls.Add(UpdateButton);
|
|
panel1.Controls.Add(DeleteButton);
|
|
panel1.Controls.Add(AddButton);
|
|
panel1.Controls.Add(InputNum);
|
|
panel1.Controls.Add(label1);
|
|
panel1.Dock = DockStyle.Right;
|
|
panel1.Location = new Point(577, 0);
|
|
panel1.Margin = new Padding(3, 2, 3, 2);
|
|
panel1.Name = "panel1";
|
|
panel1.Size = new Size(219, 338);
|
|
panel1.TabIndex = 0;
|
|
//
|
|
// UpdateButton
|
|
//
|
|
UpdateButton.Location = new Point(9, 181);
|
|
UpdateButton.Margin = new Padding(3, 2, 3, 2);
|
|
UpdateButton.Name = "UpdateButton";
|
|
UpdateButton.Size = new Size(200, 28);
|
|
UpdateButton.TabIndex = 4;
|
|
UpdateButton.Text = "Обновить коллекцию";
|
|
UpdateButton.UseVisualStyleBackColor = true;
|
|
UpdateButton.Click += ButtonRefreshCollection_Click;
|
|
//
|
|
// DeleteButton
|
|
//
|
|
DeleteButton.Location = new Point(9, 132);
|
|
DeleteButton.Margin = new Padding(3, 2, 3, 2);
|
|
DeleteButton.Name = "DeleteButton";
|
|
DeleteButton.Size = new Size(200, 28);
|
|
DeleteButton.TabIndex = 3;
|
|
DeleteButton.Text = "Удалить самолёт";
|
|
DeleteButton.UseVisualStyleBackColor = true;
|
|
DeleteButton.Click += ButtonRemoveCar_Click;
|
|
//
|
|
// AddButton
|
|
//
|
|
AddButton.Location = new Point(9, 40);
|
|
AddButton.Margin = new Padding(3, 2, 3, 2);
|
|
AddButton.Name = "AddButton";
|
|
AddButton.Size = new Size(200, 28);
|
|
AddButton.TabIndex = 2;
|
|
AddButton.Text = "Добавить самолёт";
|
|
AddButton.UseVisualStyleBackColor = true;
|
|
AddButton.Click += ButtonAddTank_Click;
|
|
//
|
|
// InputNum
|
|
//
|
|
InputNum.Location = new Point(9, 100);
|
|
InputNum.Margin = new Padding(3, 2, 3, 2);
|
|
InputNum.Name = "InputNum";
|
|
InputNum.Size = new Size(200, 23);
|
|
InputNum.TabIndex = 1;
|
|
//
|
|
// label1
|
|
//
|
|
label1.AutoSize = true;
|
|
label1.Location = new Point(2, 2);
|
|
label1.Name = "label1";
|
|
label1.Size = new Size(83, 15);
|
|
label1.TabIndex = 0;
|
|
label1.Text = "Инструменты";
|
|
//
|
|
// DrawPlane
|
|
//
|
|
DrawPlane.Dock = DockStyle.Fill;
|
|
DrawPlane.Location = new Point(0, 0);
|
|
DrawPlane.Margin = new Padding(3, 2, 3, 2);
|
|
DrawPlane.Name = "DrawPlane";
|
|
DrawPlane.Size = new Size(577, 338);
|
|
DrawPlane.TabIndex = 1;
|
|
DrawPlane.TabStop = false;
|
|
//
|
|
// FormHydroplaneCollection
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(796, 338);
|
|
Controls.Add(DrawPlane);
|
|
Controls.Add(panel1);
|
|
Margin = new Padding(3, 2, 3, 2);
|
|
Name = "FormHydroplaneCollection";
|
|
Text = "Form1";
|
|
panel1.ResumeLayout(false);
|
|
panel1.PerformLayout();
|
|
((System.ComponentModel.ISupportInitialize)DrawPlane).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Panel panel1;
|
|
private Button UpdateButton;
|
|
private Button DeleteButton;
|
|
private Button AddButton;
|
|
private TextBox InputNum;
|
|
private Label label1;
|
|
private PictureBox DrawPlane;
|
|
}
|
|
} |