187 lines
7.1 KiB
C#
187 lines
7.1 KiB
C#
namespace AirBomber
|
|
{
|
|
partial class FormBomberCollection
|
|
{
|
|
/// <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()
|
|
{
|
|
Tools = new GroupBox();
|
|
Kit = new GroupBox();
|
|
RemoveKit = new Button();
|
|
AddKit = new Button();
|
|
KitTextbox = new TextBox();
|
|
listBoxStorages = new ListBox();
|
|
ButtonRefreshCollection = new Button();
|
|
ButtonRemoveBomber = new Button();
|
|
ButtonAddBomber = new Button();
|
|
MessageBoxBomber = new TextBox();
|
|
PicBoxBomberCollection = new PictureBox();
|
|
Tools.SuspendLayout();
|
|
Kit.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)PicBoxBomberCollection).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// Tools
|
|
//
|
|
Tools.Controls.Add(Kit);
|
|
Tools.Controls.Add(ButtonRefreshCollection);
|
|
Tools.Controls.Add(ButtonRemoveBomber);
|
|
Tools.Controls.Add(ButtonAddBomber);
|
|
Tools.Controls.Add(MessageBoxBomber);
|
|
Tools.Location = new Point(538, 5);
|
|
Tools.Name = "Tools";
|
|
Tools.Size = new Size(250, 556);
|
|
Tools.TabIndex = 0;
|
|
Tools.TabStop = false;
|
|
Tools.Text = "Инструменты";
|
|
//
|
|
// Kit
|
|
//
|
|
Kit.Controls.Add(RemoveKit);
|
|
Kit.Controls.Add(AddKit);
|
|
Kit.Controls.Add(KitTextbox);
|
|
Kit.Controls.Add(listBoxStorages);
|
|
Kit.Location = new Point(17, 33);
|
|
Kit.Name = "Kit";
|
|
Kit.Size = new Size(227, 282);
|
|
Kit.TabIndex = 4;
|
|
Kit.TabStop = false;
|
|
Kit.Text = "Наборы";
|
|
//
|
|
// RemoveKit
|
|
//
|
|
RemoveKit.Location = new Point(11, 231);
|
|
RemoveKit.Name = "RemoveKit";
|
|
RemoveKit.Size = new Size(193, 36);
|
|
RemoveKit.TabIndex = 3;
|
|
RemoveKit.Text = "Удалить набор";
|
|
RemoveKit.UseVisualStyleBackColor = true;
|
|
RemoveKit.Click += RemoveKit_Click;
|
|
//
|
|
// AddKit
|
|
//
|
|
AddKit.Location = new Point(11, 63);
|
|
AddKit.Name = "AddKit";
|
|
AddKit.Size = new Size(193, 36);
|
|
AddKit.TabIndex = 2;
|
|
AddKit.Text = "Добавить набор";
|
|
AddKit.UseVisualStyleBackColor = true;
|
|
AddKit.Click += AddKit_Click;
|
|
//
|
|
// KitTextbox
|
|
//
|
|
KitTextbox.Location = new Point(15, 30);
|
|
KitTextbox.Name = "KitTextbox";
|
|
KitTextbox.Size = new Size(189, 27);
|
|
KitTextbox.TabIndex = 1;
|
|
//
|
|
// listBoxStorages
|
|
//
|
|
listBoxStorages.FormattingEnabled = true;
|
|
listBoxStorages.ItemHeight = 20;
|
|
listBoxStorages.Location = new Point(11, 109);
|
|
listBoxStorages.Name = "listBoxStorages";
|
|
listBoxStorages.Size = new Size(193, 104);
|
|
listBoxStorages.TabIndex = 0;
|
|
listBoxStorages.SelectedIndexChanged += ListBoxObjects_SelectedIndexChanged;
|
|
//
|
|
// ButtonRefreshCollection
|
|
//
|
|
ButtonRefreshCollection.Location = new Point(28, 481);
|
|
ButtonRefreshCollection.Name = "ButtonRefreshCollection";
|
|
ButtonRefreshCollection.Size = new Size(193, 37);
|
|
ButtonRefreshCollection.TabIndex = 3;
|
|
ButtonRefreshCollection.Text = "Обновить коллекцию";
|
|
ButtonRefreshCollection.UseVisualStyleBackColor = true;
|
|
ButtonRefreshCollection.Click += ButtonRefreshCollection_Click;
|
|
//
|
|
// ButtonRemoveBomber
|
|
//
|
|
ButtonRemoveBomber.Location = new Point(28, 416);
|
|
ButtonRemoveBomber.Name = "ButtonRemoveBomber";
|
|
ButtonRemoveBomber.Size = new Size(193, 41);
|
|
ButtonRemoveBomber.TabIndex = 2;
|
|
ButtonRemoveBomber.Text = "Удалить самолёт";
|
|
ButtonRemoveBomber.UseVisualStyleBackColor = true;
|
|
ButtonRemoveBomber.Click += ButtonRemoveBomber_Click;
|
|
//
|
|
// ButtonAddBomber
|
|
//
|
|
ButtonAddBomber.Location = new Point(28, 321);
|
|
ButtonAddBomber.Name = "ButtonAddBomber";
|
|
ButtonAddBomber.Size = new Size(193, 41);
|
|
ButtonAddBomber.TabIndex = 1;
|
|
ButtonAddBomber.Text = "Добавить самолёт";
|
|
ButtonAddBomber.UseVisualStyleBackColor = true;
|
|
ButtonAddBomber.Click += ButtonAddBomber_Click;
|
|
//
|
|
// MessageBoxBomber
|
|
//
|
|
MessageBoxBomber.Location = new Point(28, 368);
|
|
MessageBoxBomber.Name = "MessageBoxBomber";
|
|
MessageBoxBomber.Size = new Size(193, 27);
|
|
MessageBoxBomber.TabIndex = 0;
|
|
//
|
|
// PicBoxBomberCollection
|
|
//
|
|
PicBoxBomberCollection.Location = new Point(1, -2);
|
|
PicBoxBomberCollection.Name = "PicBoxBomberCollection";
|
|
PicBoxBomberCollection.Size = new Size(473, 563);
|
|
PicBoxBomberCollection.TabIndex = 1;
|
|
PicBoxBomberCollection.TabStop = false;
|
|
//
|
|
// FormBomberCollection
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(800, 581);
|
|
Controls.Add(PicBoxBomberCollection);
|
|
Controls.Add(Tools);
|
|
Name = "FormBomberCollection";
|
|
Text = "FormBomberCollection";
|
|
Tools.ResumeLayout(false);
|
|
Tools.PerformLayout();
|
|
Kit.ResumeLayout(false);
|
|
Kit.PerformLayout();
|
|
((System.ComponentModel.ISupportInitialize)PicBoxBomberCollection).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private GroupBox Tools;
|
|
private TextBox MessageBoxBomber;
|
|
private PictureBox PicBoxBomberCollection;
|
|
private Button ButtonRefreshCollection;
|
|
private Button ButtonRemoveBomber;
|
|
private Button ButtonAddBomber;
|
|
private GroupBox Kit;
|
|
private ListBox listBoxStorages;
|
|
private Button RemoveKit;
|
|
private Button AddKit;
|
|
private TextBox KitTextbox;
|
|
}
|
|
} |