280 lines
12 KiB
C#
280 lines
12 KiB
C#
namespace ProjectDumpTruck
|
||
{
|
||
partial class FormTruckCollection
|
||
{
|
||
/// <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()
|
||
{
|
||
groupBoxTools = new GroupBox();
|
||
panelStorage = new Panel();
|
||
buttonCollectionDel = new Button();
|
||
buttonCollectionAdd = new Button();
|
||
listBoxCollection = new ListBox();
|
||
radioButtonList = new RadioButton();
|
||
radioButtonMassive = new RadioButton();
|
||
textBoxCollectionName = new TextBox();
|
||
labelCollectionName = new Label();
|
||
buttonCompanyCreate = new Button();
|
||
panelCompanyTools = new Panel();
|
||
buttonAddTruck = new Button();
|
||
buttonRemoveTruck = new Button();
|
||
buttonRefresh = new Button();
|
||
buttonGoToCheck = new Button();
|
||
maskedTextBoxPosition = new MaskedTextBox();
|
||
comboBoxSelectorCompany = new ComboBox();
|
||
pictureBox = new PictureBox();
|
||
groupBoxTools.SuspendLayout();
|
||
panelStorage.SuspendLayout();
|
||
panelCompanyTools.SuspendLayout();
|
||
((System.ComponentModel.ISupportInitialize)pictureBox).BeginInit();
|
||
SuspendLayout();
|
||
//
|
||
// groupBoxTools
|
||
//
|
||
groupBoxTools.Controls.Add(panelStorage);
|
||
groupBoxTools.Controls.Add(buttonCompanyCreate);
|
||
groupBoxTools.Controls.Add(panelCompanyTools);
|
||
groupBoxTools.Controls.Add(comboBoxSelectorCompany);
|
||
groupBoxTools.Dock = DockStyle.Right;
|
||
groupBoxTools.Location = new Point(888, 0);
|
||
groupBoxTools.Name = "groupBoxTools";
|
||
groupBoxTools.Size = new Size(238, 688);
|
||
groupBoxTools.TabIndex = 0;
|
||
groupBoxTools.TabStop = false;
|
||
groupBoxTools.Text = "Инструменты";
|
||
//
|
||
// panelStorage
|
||
//
|
||
panelStorage.Controls.Add(buttonCollectionDel);
|
||
panelStorage.Controls.Add(buttonCollectionAdd);
|
||
panelStorage.Controls.Add(listBoxCollection);
|
||
panelStorage.Controls.Add(radioButtonList);
|
||
panelStorage.Controls.Add(radioButtonMassive);
|
||
panelStorage.Controls.Add(textBoxCollectionName);
|
||
panelStorage.Controls.Add(labelCollectionName);
|
||
panelStorage.Dock = DockStyle.Top;
|
||
panelStorage.Location = new Point(3, 23);
|
||
panelStorage.Name = "panelStorage";
|
||
panelStorage.Size = new Size(232, 274);
|
||
panelStorage.TabIndex = 12;
|
||
//
|
||
// buttonCollectionDel
|
||
//
|
||
buttonCollectionDel.Location = new Point(0, 226);
|
||
buttonCollectionDel.Name = "buttonCollectionDel";
|
||
buttonCollectionDel.Size = new Size(226, 35);
|
||
buttonCollectionDel.TabIndex = 13;
|
||
buttonCollectionDel.Text = "Удалить коллекцию";
|
||
buttonCollectionDel.Click += ButtonCollectionDel_Click;
|
||
//
|
||
// buttonCollectionAdd
|
||
//
|
||
buttonCollectionAdd.Location = new Point(3, 95);
|
||
buttonCollectionAdd.Name = "buttonCollectionAdd";
|
||
buttonCollectionAdd.Size = new Size(226, 35);
|
||
buttonCollectionAdd.TabIndex = 12;
|
||
buttonCollectionAdd.Text = "Добавить коллекцию";
|
||
buttonCollectionAdd.Click += ButtonCollectionAdd_Click;
|
||
//
|
||
// listBoxCollection
|
||
//
|
||
listBoxCollection.FormattingEnabled = true;
|
||
listBoxCollection.ItemHeight = 20;
|
||
listBoxCollection.Location = new Point(3, 136);
|
||
listBoxCollection.Name = "listBoxCollection";
|
||
listBoxCollection.Size = new Size(226, 84);
|
||
listBoxCollection.TabIndex = 4;
|
||
//
|
||
// radioButtonList
|
||
//
|
||
radioButtonList.AutoSize = true;
|
||
radioButtonList.Location = new Point(124, 65);
|
||
radioButtonList.Name = "radioButtonList";
|
||
radioButtonList.Size = new Size(80, 24);
|
||
radioButtonList.TabIndex = 3;
|
||
radioButtonList.TabStop = true;
|
||
radioButtonList.Text = "Список";
|
||
radioButtonList.UseVisualStyleBackColor = true;
|
||
//
|
||
// radioButtonMassive
|
||
//
|
||
radioButtonMassive.AutoSize = true;
|
||
radioButtonMassive.Location = new Point(27, 65);
|
||
radioButtonMassive.Name = "radioButtonMassive";
|
||
radioButtonMassive.Size = new Size(82, 24);
|
||
radioButtonMassive.TabIndex = 2;
|
||
radioButtonMassive.TabStop = true;
|
||
radioButtonMassive.Text = "Массив";
|
||
radioButtonMassive.UseVisualStyleBackColor = true;
|
||
//
|
||
// textBoxCollectionName
|
||
//
|
||
textBoxCollectionName.Location = new Point(3, 32);
|
||
textBoxCollectionName.Name = "textBoxCollectionName";
|
||
textBoxCollectionName.Size = new Size(226, 27);
|
||
textBoxCollectionName.TabIndex = 1;
|
||
//
|
||
// labelCollectionName
|
||
//
|
||
labelCollectionName.AutoSize = true;
|
||
labelCollectionName.Location = new Point(39, 9);
|
||
labelCollectionName.Name = "labelCollectionName";
|
||
labelCollectionName.Size = new Size(155, 20);
|
||
labelCollectionName.TabIndex = 0;
|
||
labelCollectionName.Text = "Название коллекции";
|
||
//
|
||
// buttonCompanyCreate
|
||
//
|
||
buttonCompanyCreate.Location = new Point(6, 337);
|
||
buttonCompanyCreate.Name = "buttonCompanyCreate";
|
||
buttonCompanyCreate.Size = new Size(226, 42);
|
||
buttonCompanyCreate.TabIndex = 11;
|
||
buttonCompanyCreate.Text = "Создание компанию\r\n";
|
||
buttonCompanyCreate.Click += ButtonCompanyCreate_Click;
|
||
//
|
||
// panelCompanyTools
|
||
//
|
||
panelCompanyTools.Controls.Add(buttonAddTruck);
|
||
panelCompanyTools.Controls.Add(buttonRemoveTruck);
|
||
panelCompanyTools.Controls.Add(buttonRefresh);
|
||
panelCompanyTools.Controls.Add(buttonGoToCheck);
|
||
panelCompanyTools.Controls.Add(maskedTextBoxPosition);
|
||
panelCompanyTools.Dock = DockStyle.Bottom;
|
||
panelCompanyTools.Enabled = false;
|
||
panelCompanyTools.Location = new Point(3, 385);
|
||
panelCompanyTools.Name = "panelCompanyTools";
|
||
panelCompanyTools.Size = new Size(232, 300);
|
||
panelCompanyTools.TabIndex = 10;
|
||
//
|
||
// buttonAddTruck
|
||
//
|
||
buttonAddTruck.Location = new Point(3, 35);
|
||
buttonAddTruck.Name = "buttonAddTruck";
|
||
buttonAddTruck.Size = new Size(226, 42);
|
||
buttonAddTruck.TabIndex = 0;
|
||
buttonAddTruck.Text = "Добваление грузовика";
|
||
buttonAddTruck.Click += ButtonAddTruck_Click;
|
||
//
|
||
// buttonRemoveTruck
|
||
//
|
||
buttonRemoveTruck.Location = new Point(3, 138);
|
||
buttonRemoveTruck.Name = "buttonRemoveTruck";
|
||
buttonRemoveTruck.Size = new Size(226, 48);
|
||
buttonRemoveTruck.TabIndex = 4;
|
||
buttonRemoveTruck.Text = "Удалить грузовик";
|
||
buttonRemoveTruck.UseVisualStyleBackColor = true;
|
||
buttonRemoveTruck.Click += ButtonRemoveTruck_Click;
|
||
//
|
||
// buttonRefresh
|
||
//
|
||
buttonRefresh.Location = new Point(3, 246);
|
||
buttonRefresh.Name = "buttonRefresh";
|
||
buttonRefresh.Size = new Size(226, 48);
|
||
buttonRefresh.TabIndex = 6;
|
||
buttonRefresh.Text = "Обновить";
|
||
buttonRefresh.UseVisualStyleBackColor = true;
|
||
buttonRefresh.Click += ButtonRefresh_Click;
|
||
//
|
||
// buttonGoToCheck
|
||
//
|
||
buttonGoToCheck.Location = new Point(3, 192);
|
||
buttonGoToCheck.Name = "buttonGoToCheck";
|
||
buttonGoToCheck.Size = new Size(226, 48);
|
||
buttonGoToCheck.TabIndex = 5;
|
||
buttonGoToCheck.Text = "Передать на тест";
|
||
buttonGoToCheck.UseVisualStyleBackColor = true;
|
||
buttonGoToCheck.Click += ButtonGoToCheck_Click;
|
||
//
|
||
// maskedTextBoxPosition
|
||
//
|
||
maskedTextBoxPosition.Location = new Point(3, 105);
|
||
maskedTextBoxPosition.Mask = "00";
|
||
maskedTextBoxPosition.Name = "maskedTextBoxPosition";
|
||
maskedTextBoxPosition.Size = new Size(226, 27);
|
||
maskedTextBoxPosition.TabIndex = 3;
|
||
maskedTextBoxPosition.ValidatingType = typeof(int);
|
||
//
|
||
// comboBoxSelectorCompany
|
||
//
|
||
comboBoxSelectorCompany.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
|
||
comboBoxSelectorCompany.DropDownStyle = ComboBoxStyle.DropDownList;
|
||
comboBoxSelectorCompany.FormattingEnabled = true;
|
||
comboBoxSelectorCompany.Items.AddRange(new object[] { "Хранилище" });
|
||
comboBoxSelectorCompany.Location = new Point(6, 303);
|
||
comboBoxSelectorCompany.Name = "comboBoxSelectorCompany";
|
||
comboBoxSelectorCompany.Size = new Size(226, 28);
|
||
comboBoxSelectorCompany.TabIndex = 9;
|
||
comboBoxSelectorCompany.SelectedIndexChanged += СomboBoxSelectorCompany_SelectedIndexChanged_1;
|
||
//
|
||
// pictureBox
|
||
//
|
||
pictureBox.Dock = DockStyle.Fill;
|
||
pictureBox.Location = new Point(0, 0);
|
||
pictureBox.Name = "pictureBox";
|
||
pictureBox.Size = new Size(888, 688);
|
||
pictureBox.TabIndex = 1;
|
||
pictureBox.TabStop = false;
|
||
//
|
||
// FormTruckCollection
|
||
//
|
||
AutoScaleDimensions = new SizeF(8F, 20F);
|
||
AutoScaleMode = AutoScaleMode.Font;
|
||
ClientSize = new Size(1126, 688);
|
||
Controls.Add(pictureBox);
|
||
Controls.Add(groupBoxTools);
|
||
Name = "FormTruckCollection";
|
||
Text = "Коллекция грузовиков";
|
||
groupBoxTools.ResumeLayout(false);
|
||
panelStorage.ResumeLayout(false);
|
||
panelStorage.PerformLayout();
|
||
panelCompanyTools.ResumeLayout(false);
|
||
panelCompanyTools.PerformLayout();
|
||
((System.ComponentModel.ISupportInitialize)pictureBox).EndInit();
|
||
ResumeLayout(false);
|
||
}
|
||
|
||
#endregion
|
||
|
||
private GroupBox groupBoxTools;
|
||
private Button buttonGoToCheck;
|
||
private Button buttonRemoveTruck;
|
||
private MaskedTextBox maskedTextBoxPosition;
|
||
private PictureBox pictureBox;
|
||
private Button buttonRefresh;
|
||
private ComboBox comboBoxSelectorCompany;
|
||
private Button buttonAddTruck;
|
||
private Panel panelCompanyTools;
|
||
private Button buttonCompanyCreate;
|
||
private Panel panelStorage;
|
||
private Button buttonCollectionAdd;
|
||
private ListBox listBoxCollection;
|
||
private RadioButton radioButtonList;
|
||
private RadioButton radioButtonMassive;
|
||
private TextBox textBoxCollectionName;
|
||
private Label labelCollectionName;
|
||
private Button buttonCollectionDel;
|
||
}
|
||
} |