PIbd-22_Shabunov_O.A._AirBo.../AirBomber/FormEntityCollection.Designer.cs

192 lines
8.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace AirBomber
{
partial class FormEntityCollection
{
/// <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()
{
CollectionPictureBox = new PictureBox();
ToolGroupBox = new GroupBox();
SetsGroupBox = new GroupBox();
SetNameTextBox = new TextBox();
StorageListBox = new ListBox();
AddSetButton = new Button();
RemoveSetButton = new Button();
RefreshCollectionButton = new Button();
RemoveBomberButton = new Button();
NumberMaskedTextBox = new MaskedTextBox();
AddBomberButton = new Button();
((System.ComponentModel.ISupportInitialize)CollectionPictureBox).BeginInit();
ToolGroupBox.SuspendLayout();
SetsGroupBox.SuspendLayout();
SuspendLayout();
//
// CollectionPictureBox
//
CollectionPictureBox.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
CollectionPictureBox.Location = new Point(0, 0);
CollectionPictureBox.Name = "CollectionPictureBox";
CollectionPictureBox.Size = new Size(812, 603);
CollectionPictureBox.TabIndex = 0;
CollectionPictureBox.TabStop = false;
//
// ToolGroupBox
//
ToolGroupBox.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Right;
ToolGroupBox.Controls.Add(SetsGroupBox);
ToolGroupBox.Controls.Add(RefreshCollectionButton);
ToolGroupBox.Controls.Add(RemoveBomberButton);
ToolGroupBox.Controls.Add(NumberMaskedTextBox);
ToolGroupBox.Controls.Add(AddBomberButton);
ToolGroupBox.Location = new Point(818, 12);
ToolGroupBox.Name = "ToolGroupBox";
ToolGroupBox.Size = new Size(176, 579);
ToolGroupBox.TabIndex = 1;
ToolGroupBox.TabStop = false;
ToolGroupBox.Text = "Инструменты";
//
// SetsGroupBox
//
SetsGroupBox.Controls.Add(SetNameTextBox);
SetsGroupBox.Controls.Add(StorageListBox);
SetsGroupBox.Controls.Add(AddSetButton);
SetsGroupBox.Controls.Add(RemoveSetButton);
SetsGroupBox.Location = new Point(6, 22);
SetsGroupBox.Name = "SetsGroupBox";
SetsGroupBox.Size = new Size(164, 232);
SetsGroupBox.TabIndex = 8;
SetsGroupBox.TabStop = false;
SetsGroupBox.Text = "Наборы";
//
// SetNameTextBox
//
SetNameTextBox.Location = new Point(6, 22);
SetNameTextBox.Name = "SetNameTextBox";
SetNameTextBox.Size = new Size(152, 23);
SetNameTextBox.TabIndex = 4;
//
// StorageListBox
//
StorageListBox.FormattingEnabled = true;
StorageListBox.ItemHeight = 15;
StorageListBox.Items.AddRange(new object[] { "Наборы здесь..." });
StorageListBox.Location = new Point(6, 96);
StorageListBox.Name = "StorageListBox";
StorageListBox.Size = new Size(152, 79);
StorageListBox.TabIndex = 7;
StorageListBox.SelectedIndexChanged += StorageListBoxIndexChanged;
//
// AddSetButton
//
AddSetButton.Location = new Point(6, 51);
AddSetButton.Name = "AddSetButton";
AddSetButton.Size = new Size(152, 30);
AddSetButton.TabIndex = 5;
AddSetButton.Text = "Добавить набор";
AddSetButton.UseVisualStyleBackColor = true;
AddSetButton.Click += ButtonAddSet_Click;
//
// RemoveSetButton
//
RemoveSetButton.Location = new Point(6, 190);
RemoveSetButton.Name = "RemoveSetButton";
RemoveSetButton.Size = new Size(152, 30);
RemoveSetButton.TabIndex = 6;
RemoveSetButton.Text = "Удалить набор";
RemoveSetButton.UseVisualStyleBackColor = true;
RemoveSetButton.Click += ButtonRemoveSet_Click;
//
// RefreshCollectionButton
//
RefreshCollectionButton.Location = new Point(6, 543);
RefreshCollectionButton.Name = "RefreshCollectionButton";
RefreshCollectionButton.Size = new Size(164, 30);
RefreshCollectionButton.TabIndex = 3;
RefreshCollectionButton.Text = "Обновить коллекцию";
RefreshCollectionButton.UseVisualStyleBackColor = true;
RefreshCollectionButton.Click += ButtonRefreshCollection_Click;
//
// RemoveBomberButton
//
RemoveBomberButton.Location = new Point(6, 467);
RemoveBomberButton.Name = "RemoveBomberButton";
RemoveBomberButton.Size = new Size(164, 30);
RemoveBomberButton.TabIndex = 2;
RemoveBomberButton.Text = "Удалить бомбардировщик";
RemoveBomberButton.UseVisualStyleBackColor = true;
RemoveBomberButton.Click += ButtonRemoveEntity_Click;
//
// NumberMaskedTextBox
//
NumberMaskedTextBox.Location = new Point(6, 428);
NumberMaskedTextBox.Mask = "00000";
NumberMaskedTextBox.Name = "NumberMaskedTextBox";
NumberMaskedTextBox.Size = new Size(164, 23);
NumberMaskedTextBox.TabIndex = 1;
NumberMaskedTextBox.ValidatingType = typeof(int);
//
// AddBomberButton
//
AddBomberButton.Location = new Point(6, 358);
AddBomberButton.Name = "AddBomberButton";
AddBomberButton.Size = new Size(164, 43);
AddBomberButton.TabIndex = 0;
AddBomberButton.Text = "Добавить бомбардировщик";
AddBomberButton.UseVisualStyleBackColor = true;
AddBomberButton.Click += ButtonAddEntity_Click;
//
// FormEntityCollection
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(1006, 603);
Controls.Add(ToolGroupBox);
Controls.Add(CollectionPictureBox);
Name = "FormEntityCollection";
Text = "Набор бомбардировщиков";
((System.ComponentModel.ISupportInitialize)CollectionPictureBox).EndInit();
ToolGroupBox.ResumeLayout(false);
ToolGroupBox.PerformLayout();
SetsGroupBox.ResumeLayout(false);
SetsGroupBox.PerformLayout();
ResumeLayout(false);
}
#endregion
private PictureBox CollectionPictureBox;
private GroupBox ToolGroupBox;
private Button RefreshCollectionButton;
private Button RemoveBomberButton;
private MaskedTextBox NumberMaskedTextBox;
private Button AddBomberButton;
private GroupBox SetsGroupBox;
private TextBox SetNameTextBox;
private ListBox StorageListBox;
private Button AddSetButton;
private Button RemoveSetButton;
}
}