135 lines
5.2 KiB
C#
135 lines
5.2 KiB
C#
namespace WarmlyShip
|
||
{
|
||
partial class FormShipCollection
|
||
{
|
||
/// <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()
|
||
{
|
||
pictureBoxCollection = new PictureBox();
|
||
toolsLabel = new Panel();
|
||
label1 = new Label();
|
||
ButtonRefreshCollection = new Button();
|
||
ButtonDeleteShip = new Button();
|
||
maskedTextBoxNumber = new TextBox();
|
||
ButtonAddShip = new Button();
|
||
((System.ComponentModel.ISupportInitialize)pictureBoxCollection).BeginInit();
|
||
toolsLabel.SuspendLayout();
|
||
SuspendLayout();
|
||
//
|
||
// pictureBoxCollection
|
||
//
|
||
pictureBoxCollection.Location = new Point(0, 0);
|
||
pictureBoxCollection.Name = "pictureBoxCollection";
|
||
pictureBoxCollection.Size = new Size(655, 395);
|
||
pictureBoxCollection.SizeMode = PictureBoxSizeMode.AutoSize;
|
||
pictureBoxCollection.TabIndex = 0;
|
||
pictureBoxCollection.TabStop = false;
|
||
//
|
||
// toolsLabel
|
||
//
|
||
toolsLabel.Controls.Add(label1);
|
||
toolsLabel.Controls.Add(ButtonRefreshCollection);
|
||
toolsLabel.Controls.Add(ButtonDeleteShip);
|
||
toolsLabel.Controls.Add(maskedTextBoxNumber);
|
||
toolsLabel.Controls.Add(ButtonAddShip);
|
||
toolsLabel.Location = new Point(660, 12);
|
||
toolsLabel.Name = "toolsLabel";
|
||
toolsLabel.Size = new Size(212, 383);
|
||
toolsLabel.TabIndex = 0;
|
||
//
|
||
// label1
|
||
//
|
||
label1.AutoSize = true;
|
||
label1.Location = new Point(58, -3);
|
||
label1.Name = "label1";
|
||
label1.Size = new Size(83, 15);
|
||
label1.TabIndex = 1;
|
||
label1.Text = "Инструменты";
|
||
//
|
||
// ButtonRefreshCollection
|
||
//
|
||
ButtonRefreshCollection.Location = new Point(35, 187);
|
||
ButtonRefreshCollection.Name = "ButtonRefreshCollection";
|
||
ButtonRefreshCollection.Size = new Size(142, 37);
|
||
ButtonRefreshCollection.TabIndex = 2;
|
||
ButtonRefreshCollection.Text = "Обновить коллекцию";
|
||
ButtonRefreshCollection.UseVisualStyleBackColor = true;
|
||
ButtonRefreshCollection.Click += ButtonRefreshCollection_Click;
|
||
//
|
||
// ButtonDeleteShip
|
||
//
|
||
ButtonDeleteShip.Location = new Point(35, 128);
|
||
ButtonDeleteShip.Name = "ButtonDeleteShip";
|
||
ButtonDeleteShip.Size = new Size(142, 37);
|
||
ButtonDeleteShip.TabIndex = 2;
|
||
ButtonDeleteShip.Text = "Удалить корабль";
|
||
ButtonDeleteShip.UseVisualStyleBackColor = true;
|
||
ButtonDeleteShip.Click += ButtonDeleteShip_Click;
|
||
//
|
||
// maskedTextBoxNumber
|
||
//
|
||
maskedTextBoxNumber.Location = new Point(58, 83);
|
||
maskedTextBoxNumber.Name = "maskedTextBoxNumber";
|
||
maskedTextBoxNumber.Size = new Size(100, 23);
|
||
maskedTextBoxNumber.TabIndex = 2;
|
||
//
|
||
// ButtonAddShip
|
||
//
|
||
ButtonAddShip.Location = new Point(35, 31);
|
||
ButtonAddShip.Name = "ButtonAddShip";
|
||
ButtonAddShip.Size = new Size(142, 36);
|
||
ButtonAddShip.TabIndex = 2;
|
||
ButtonAddShip.Text = "Добавить корабль";
|
||
ButtonAddShip.UseVisualStyleBackColor = true;
|
||
ButtonAddShip.Click += ButtonAddShip_Click;
|
||
//
|
||
// FormShipCollection
|
||
//
|
||
AutoScaleDimensions = new SizeF(7F, 15F);
|
||
AutoScaleMode = AutoScaleMode.Font;
|
||
ClientSize = new Size(884, 395);
|
||
Controls.Add(toolsLabel);
|
||
Controls.Add(pictureBoxCollection);
|
||
Name = "FormShipCollection";
|
||
Text = "Набор кораблей";
|
||
((System.ComponentModel.ISupportInitialize)pictureBoxCollection).EndInit();
|
||
toolsLabel.ResumeLayout(false);
|
||
toolsLabel.PerformLayout();
|
||
ResumeLayout(false);
|
||
PerformLayout();
|
||
}
|
||
|
||
#endregion
|
||
|
||
private PictureBox pictureBoxCollection;
|
||
private Panel toolsLabel;
|
||
private Button ButtonAddShip;
|
||
private Label label1;
|
||
private TextBox maskedTextBoxNumber;
|
||
private Button ButtonDeleteShip;
|
||
private Button ButtonRefreshCollection;
|
||
}
|
||
} |