268 lines
13 KiB
C#
268 lines
13 KiB
C#
namespace Catamaran
|
||
{
|
||
partial class FormCatamaranCollection
|
||
{
|
||
/// <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()
|
||
{
|
||
this.pictureBoxCollection = new System.Windows.Forms.PictureBox();
|
||
this.groupBoxTools = new System.Windows.Forms.GroupBox();
|
||
this.groupBoxSets = new System.Windows.Forms.GroupBox();
|
||
this.textBoxStorageName = new System.Windows.Forms.TextBox();
|
||
this.buttonDelObject = new System.Windows.Forms.Button();
|
||
this.listBoxStorages = new System.Windows.Forms.ListBox();
|
||
this.buttonAddObject = new System.Windows.Forms.Button();
|
||
this.maskedTextBoxNumber = new System.Windows.Forms.MaskedTextBox();
|
||
this.ButtonRefreshCollection = new System.Windows.Forms.Button();
|
||
this.ButtonRemoveCatamaran = new System.Windows.Forms.Button();
|
||
this.ButtonAddCatamaran = new System.Windows.Forms.Button();
|
||
this.menuStrip = new System.Windows.Forms.MenuStrip();
|
||
this.ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||
this.SaveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||
this.LoadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||
this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
|
||
this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
|
||
this.SortByType = new System.Windows.Forms.Button();
|
||
this.SortByColor = new System.Windows.Forms.Button();
|
||
((System.ComponentModel.ISupportInitialize)(this.pictureBoxCollection)).BeginInit();
|
||
this.groupBoxTools.SuspendLayout();
|
||
this.groupBoxSets.SuspendLayout();
|
||
this.menuStrip.SuspendLayout();
|
||
this.SuspendLayout();
|
||
//
|
||
// pictureBoxCollection
|
||
//
|
||
this.pictureBoxCollection.Location = new System.Drawing.Point(0, 1);
|
||
this.pictureBoxCollection.Name = "pictureBoxCollection";
|
||
this.pictureBoxCollection.Size = new System.Drawing.Size(736, 459);
|
||
this.pictureBoxCollection.TabIndex = 0;
|
||
this.pictureBoxCollection.TabStop = false;
|
||
//
|
||
// groupBoxTools
|
||
//
|
||
this.groupBoxTools.Controls.Add(this.SortByColor);
|
||
this.groupBoxTools.Controls.Add(this.SortByType);
|
||
this.groupBoxTools.Controls.Add(this.groupBoxSets);
|
||
this.groupBoxTools.Controls.Add(this.maskedTextBoxNumber);
|
||
this.groupBoxTools.Controls.Add(this.ButtonRefreshCollection);
|
||
this.groupBoxTools.Controls.Add(this.ButtonRemoveCatamaran);
|
||
this.groupBoxTools.Controls.Add(this.ButtonAddCatamaran);
|
||
this.groupBoxTools.Controls.Add(this.menuStrip);
|
||
this.groupBoxTools.Location = new System.Drawing.Point(739, 1);
|
||
this.groupBoxTools.Name = "groupBoxTools";
|
||
this.groupBoxTools.Size = new System.Drawing.Size(147, 460);
|
||
this.groupBoxTools.TabIndex = 1;
|
||
this.groupBoxTools.TabStop = false;
|
||
this.groupBoxTools.Text = "Инструменты";
|
||
//
|
||
// groupBoxSets
|
||
//
|
||
this.groupBoxSets.Controls.Add(this.textBoxStorageName);
|
||
this.groupBoxSets.Controls.Add(this.buttonDelObject);
|
||
this.groupBoxSets.Controls.Add(this.listBoxStorages);
|
||
this.groupBoxSets.Controls.Add(this.buttonAddObject);
|
||
this.groupBoxSets.Location = new System.Drawing.Point(3, 46);
|
||
this.groupBoxSets.Name = "groupBoxSets";
|
||
this.groupBoxSets.Size = new System.Drawing.Size(138, 203);
|
||
this.groupBoxSets.TabIndex = 4;
|
||
this.groupBoxSets.TabStop = false;
|
||
this.groupBoxSets.Text = "Наборы";
|
||
//
|
||
// textBoxStorageName
|
||
//
|
||
this.textBoxStorageName.Location = new System.Drawing.Point(6, 22);
|
||
this.textBoxStorageName.Name = "textBoxStorageName";
|
||
this.textBoxStorageName.Size = new System.Drawing.Size(130, 23);
|
||
this.textBoxStorageName.TabIndex = 4;
|
||
//
|
||
// buttonDelObject
|
||
//
|
||
this.buttonDelObject.Location = new System.Drawing.Point(3, 167);
|
||
this.buttonDelObject.Name = "buttonDelObject";
|
||
this.buttonDelObject.Size = new System.Drawing.Size(134, 27);
|
||
this.buttonDelObject.TabIndex = 3;
|
||
this.buttonDelObject.Text = "Удалить набор";
|
||
this.buttonDelObject.UseVisualStyleBackColor = true;
|
||
this.buttonDelObject.Click += new System.EventHandler(this.ButtonDelObject_Click);
|
||
//
|
||
// listBoxStorages
|
||
//
|
||
this.listBoxStorages.FormattingEnabled = true;
|
||
this.listBoxStorages.ItemHeight = 15;
|
||
this.listBoxStorages.Location = new System.Drawing.Point(6, 82);
|
||
this.listBoxStorages.Name = "listBoxStorages";
|
||
this.listBoxStorages.Size = new System.Drawing.Size(132, 79);
|
||
this.listBoxStorages.TabIndex = 2;
|
||
this.listBoxStorages.SelectedIndexChanged += new System.EventHandler(this.ListBoxObjects_SelectedIndexChanged);
|
||
//
|
||
// buttonAddObject
|
||
//
|
||
this.buttonAddObject.Location = new System.Drawing.Point(6, 51);
|
||
this.buttonAddObject.Name = "buttonAddObject";
|
||
this.buttonAddObject.Size = new System.Drawing.Size(131, 25);
|
||
this.buttonAddObject.TabIndex = 1;
|
||
this.buttonAddObject.Text = "Добавить набор";
|
||
this.buttonAddObject.UseVisualStyleBackColor = true;
|
||
this.buttonAddObject.Click += new System.EventHandler(this.ButtonAddObject_Click);
|
||
//
|
||
// maskedTextBoxNumber
|
||
//
|
||
this.maskedTextBoxNumber.Location = new System.Drawing.Point(0, 351);
|
||
this.maskedTextBoxNumber.Name = "maskedTextBoxNumber";
|
||
this.maskedTextBoxNumber.Size = new System.Drawing.Size(137, 23);
|
||
this.maskedTextBoxNumber.TabIndex = 3;
|
||
//
|
||
// ButtonRefreshCollection
|
||
//
|
||
this.ButtonRefreshCollection.Location = new System.Drawing.Point(0, 420);
|
||
this.ButtonRefreshCollection.Name = "ButtonRefreshCollection";
|
||
this.ButtonRefreshCollection.Size = new System.Drawing.Size(140, 34);
|
||
this.ButtonRefreshCollection.TabIndex = 2;
|
||
this.ButtonRefreshCollection.Text = "Обновить коллекцию";
|
||
this.ButtonRefreshCollection.UseVisualStyleBackColor = true;
|
||
this.ButtonRefreshCollection.Click += new System.EventHandler(this.ButtonRefreshCollection_Click);
|
||
//
|
||
// ButtonRemoveCatamaran
|
||
//
|
||
this.ButtonRemoveCatamaran.Location = new System.Drawing.Point(-1, 380);
|
||
this.ButtonRemoveCatamaran.Name = "ButtonRemoveCatamaran";
|
||
this.ButtonRemoveCatamaran.Size = new System.Drawing.Size(140, 34);
|
||
this.ButtonRemoveCatamaran.TabIndex = 1;
|
||
this.ButtonRemoveCatamaran.Text = "Удалить катамаран";
|
||
this.ButtonRemoveCatamaran.UseVisualStyleBackColor = true;
|
||
this.ButtonRemoveCatamaran.Click += new System.EventHandler(this.ButtonRemoveCatamaran_Click);
|
||
//
|
||
// ButtonAddCatamaran
|
||
//
|
||
this.ButtonAddCatamaran.Location = new System.Drawing.Point(-1, 311);
|
||
this.ButtonAddCatamaran.Name = "ButtonAddCatamaran";
|
||
this.ButtonAddCatamaran.Size = new System.Drawing.Size(140, 34);
|
||
this.ButtonAddCatamaran.TabIndex = 0;
|
||
this.ButtonAddCatamaran.Text = "Добавить катамаран";
|
||
this.ButtonAddCatamaran.UseVisualStyleBackColor = true;
|
||
this.ButtonAddCatamaran.Click += new System.EventHandler(this.ButtonAddCatamaran_Click);
|
||
//
|
||
// menuStrip
|
||
//
|
||
this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||
this.ToolStripMenuItem});
|
||
this.menuStrip.Location = new System.Drawing.Point(3, 19);
|
||
this.menuStrip.Name = "menuStrip";
|
||
this.menuStrip.Size = new System.Drawing.Size(141, 24);
|
||
this.menuStrip.TabIndex = 5;
|
||
this.menuStrip.Text = "menuStrip";
|
||
//
|
||
// ToolStripMenuItem
|
||
//
|
||
this.ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||
this.SaveToolStripMenuItem,
|
||
this.LoadToolStripMenuItem});
|
||
this.ToolStripMenuItem.Name = "ToolStripMenuItem";
|
||
this.ToolStripMenuItem.Size = new System.Drawing.Size(48, 20);
|
||
this.ToolStripMenuItem.Text = "Файл";
|
||
//
|
||
// SaveToolStripMenuItem
|
||
//
|
||
this.SaveToolStripMenuItem.Name = "SaveToolStripMenuItem";
|
||
this.SaveToolStripMenuItem.Size = new System.Drawing.Size(141, 22);
|
||
this.SaveToolStripMenuItem.Text = "Сохранение";
|
||
this.SaveToolStripMenuItem.Click += new System.EventHandler(this.SaveToolStripMenuItem_Click);
|
||
//
|
||
// LoadToolStripMenuItem
|
||
//
|
||
this.LoadToolStripMenuItem.Name = "LoadToolStripMenuItem";
|
||
this.LoadToolStripMenuItem.Size = new System.Drawing.Size(141, 22);
|
||
this.LoadToolStripMenuItem.Text = "Загрузка";
|
||
this.LoadToolStripMenuItem.Click += new System.EventHandler(this.LoadToolStripMenuItem_Click);
|
||
//
|
||
// openFileDialog
|
||
//
|
||
this.openFileDialog.FileName = "openFileDialog1";
|
||
//
|
||
// SortByType
|
||
//
|
||
this.SortByType.Location = new System.Drawing.Point(-1, 255);
|
||
this.SortByType.Name = "SortByType";
|
||
this.SortByType.Size = new System.Drawing.Size(140, 23);
|
||
this.SortByType.TabIndex = 6;
|
||
this.SortByType.Text = "Сортировка по типу";
|
||
this.SortByType.UseVisualStyleBackColor = true;
|
||
this.SortByType.Click += new System.EventHandler(this.buttonSortByType_Click);
|
||
//
|
||
// SortByColor
|
||
//
|
||
this.SortByColor.Location = new System.Drawing.Point(0, 282);
|
||
this.SortByColor.Name = "SortByColor";
|
||
this.SortByColor.Size = new System.Drawing.Size(139, 23);
|
||
this.SortByColor.TabIndex = 7;
|
||
this.SortByColor.Text = "Сортировка по цвету";
|
||
this.SortByColor.UseVisualStyleBackColor = true;
|
||
this.SortByColor.Click += new System.EventHandler(this.buttonSortByColor_Click);
|
||
//
|
||
// FormCatamaranCollection
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(885, 461);
|
||
this.Controls.Add(this.groupBoxTools);
|
||
this.Controls.Add(this.pictureBoxCollection);
|
||
this.MainMenuStrip = this.menuStrip;
|
||
this.Name = "FormCatamaranCollection";
|
||
this.Text = "Набор катамаранов";
|
||
((System.ComponentModel.ISupportInitialize)(this.pictureBoxCollection)).EndInit();
|
||
this.groupBoxTools.ResumeLayout(false);
|
||
this.groupBoxTools.PerformLayout();
|
||
this.groupBoxSets.ResumeLayout(false);
|
||
this.groupBoxSets.PerformLayout();
|
||
this.menuStrip.ResumeLayout(false);
|
||
this.menuStrip.PerformLayout();
|
||
this.ResumeLayout(false);
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private PictureBox pictureBoxCollection;
|
||
private GroupBox groupBoxTools;
|
||
private Button ButtonAddCatamaran;
|
||
private Button ButtonRefreshCollection;
|
||
private Button ButtonRemoveCatamaran;
|
||
private MaskedTextBox maskedTextBoxNumber;
|
||
private GroupBox groupBoxSets;
|
||
private Button buttonAddObject;
|
||
private Button buttonDelObject;
|
||
private ListBox listBoxStorages;
|
||
private TextBox textBoxStorageName;
|
||
private MenuStrip menuStrip;
|
||
private ToolStripMenuItem ToolStripMenuItem;
|
||
private ToolStripMenuItem SaveToolStripMenuItem;
|
||
private ToolStripMenuItem LoadToolStripMenuItem;
|
||
private SaveFileDialog saveFileDialog;
|
||
private OpenFileDialog openFileDialog;
|
||
private Button SortByColor;
|
||
private Button SortByType;
|
||
}
|
||
} |