using System.Windows.Forms; namespace Airbus_Base { partial class FormAirplaneCollection { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.toolsPanel = new System.Windows.Forms.Panel(); this.ButtonSortByColor = new System.Windows.Forms.Button(); this.ButtonSortByType = new System.Windows.Forms.Button(); this.panelSets = new System.Windows.Forms.Panel(); this.textBoxStorageName = new System.Windows.Forms.TextBox(); this.listBoxObjects = new System.Windows.Forms.ListBox(); this.ButtonAddObject = new System.Windows.Forms.Button(); this.ButtonDelObject = new System.Windows.Forms.Button(); this.SetsLabel = new System.Windows.Forms.Label(); this.ButtonAddAirplane = new System.Windows.Forms.Button(); this.ButtonDeleteAirplane = new System.Windows.Forms.Button(); this.ButtonRefreshCollection = new System.Windows.Forms.Button(); this.maskedTextBoxNumber = new System.Windows.Forms.TextBox(); this.LabelTools = new System.Windows.Forms.Label(); this.pictureBoxCollection = new System.Windows.Forms.PictureBox(); this.menuStrip = new System.Windows.Forms.MenuStrip(); this.FileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.SaveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.LoadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.openFileDialog = new System.Windows.Forms.OpenFileDialog(); this.saveFileDialog = new System.Windows.Forms.SaveFileDialog(); this.toolsPanel.SuspendLayout(); this.panelSets.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBoxCollection)).BeginInit(); this.menuStrip.SuspendLayout(); this.SuspendLayout(); // // toolsPanel // this.toolsPanel.Controls.Add(this.ButtonSortByColor); this.toolsPanel.Controls.Add(this.ButtonSortByType); this.toolsPanel.Controls.Add(this.panelSets); this.toolsPanel.Controls.Add(this.ButtonAddAirplane); this.toolsPanel.Controls.Add(this.ButtonDeleteAirplane); this.toolsPanel.Controls.Add(this.ButtonRefreshCollection); this.toolsPanel.Controls.Add(this.maskedTextBoxNumber); this.toolsPanel.Controls.Add(this.LabelTools); this.toolsPanel.Location = new System.Drawing.Point(675, -2); this.toolsPanel.Name = "toolsPanel"; this.toolsPanel.Size = new System.Drawing.Size(220, 451); this.toolsPanel.TabIndex = 0; // // ButtonSortByColor // this.ButtonSortByColor.Location = new System.Drawing.Point(18, 272); this.ButtonSortByColor.Name = "ButtonSortByColor"; this.ButtonSortByColor.Size = new System.Drawing.Size(187, 32); this.ButtonSortByColor.TabIndex = 8; this.ButtonSortByColor.Text = "Сортировать по цвету"; this.ButtonSortByColor.UseVisualStyleBackColor = true; this.ButtonSortByColor.Click += new System.EventHandler(this.ButtonSortByColor_Click); // // ButtonSortByType // this.ButtonSortByType.Location = new System.Drawing.Point(18, 234); this.ButtonSortByType.Name = "ButtonSortByType"; this.ButtonSortByType.Size = new System.Drawing.Size(187, 32); this.ButtonSortByType.TabIndex = 7; this.ButtonSortByType.Text = "Сортировать по типу"; this.ButtonSortByType.UseVisualStyleBackColor = true; this.ButtonSortByType.Click += new System.EventHandler(this.ButtonSortByType_Click); // // panelSets // this.panelSets.Controls.Add(this.textBoxStorageName); this.panelSets.Controls.Add(this.listBoxObjects); this.panelSets.Controls.Add(this.ButtonAddObject); this.panelSets.Controls.Add(this.ButtonDelObject); this.panelSets.Controls.Add(this.SetsLabel); this.panelSets.Location = new System.Drawing.Point(8, 20); this.panelSets.Name = "panelSets"; this.panelSets.Size = new System.Drawing.Size(210, 208); this.panelSets.TabIndex = 6; // // textBoxStorageName // this.textBoxStorageName.Location = new System.Drawing.Point(10, 27); this.textBoxStorageName.Name = "textBoxStorageName"; this.textBoxStorageName.Size = new System.Drawing.Size(190, 27); this.textBoxStorageName.TabIndex = 12; // // listBoxObjects // this.listBoxObjects.FormattingEnabled = true; this.listBoxObjects.ItemHeight = 20; this.listBoxObjects.Location = new System.Drawing.Point(10, 99); this.listBoxObjects.Name = "listBoxObjects"; this.listBoxObjects.Size = new System.Drawing.Size(190, 64); this.listBoxObjects.TabIndex = 11; this.listBoxObjects.SelectedIndexChanged += new System.EventHandler(this.listBoxObjects_SelectedIndexChanged); // // ButtonAddObject // this.ButtonAddObject.Location = new System.Drawing.Point(10, 60); this.ButtonAddObject.Name = "ButtonAddObject"; this.ButtonAddObject.Size = new System.Drawing.Size(191, 33); this.ButtonAddObject.TabIndex = 8; this.ButtonAddObject.Text = "Добавить набор"; this.ButtonAddObject.UseVisualStyleBackColor = true; this.ButtonAddObject.Click += new System.EventHandler(this.ButtonAddObject_Click); // // ButtonDelObject // this.ButtonDelObject.Location = new System.Drawing.Point(10, 169); this.ButtonDelObject.Name = "ButtonDelObject"; this.ButtonDelObject.Size = new System.Drawing.Size(192, 33); this.ButtonDelObject.TabIndex = 7; this.ButtonDelObject.Text = "Удалить набор\r\n"; this.ButtonDelObject.UseVisualStyleBackColor = true; this.ButtonDelObject.Click += new System.EventHandler(this.ButtonDelObject_Click); // // SetsLabel // this.SetsLabel.AutoSize = true; this.SetsLabel.Location = new System.Drawing.Point(13, 4); this.SetsLabel.Name = "SetsLabel"; this.SetsLabel.Size = new System.Drawing.Size(66, 20); this.SetsLabel.TabIndex = 0; this.SetsLabel.Text = "Наборы"; // // ButtonAddAirplane // this.ButtonAddAirplane.Location = new System.Drawing.Point(41, 310); this.ButtonAddAirplane.Name = "ButtonAddAirplane"; this.ButtonAddAirplane.Size = new System.Drawing.Size(146, 31); this.ButtonAddAirplane.TabIndex = 1; this.ButtonAddAirplane.Text = "Добавить объект"; this.ButtonAddAirplane.UseVisualStyleBackColor = true; this.ButtonAddAirplane.Click += new System.EventHandler(this.ButtonAddAirplane_Click); // // ButtonDeleteAirplane // this.ButtonDeleteAirplane.Location = new System.Drawing.Point(41, 345); this.ButtonDeleteAirplane.Name = "ButtonDeleteAirplane"; this.ButtonDeleteAirplane.Size = new System.Drawing.Size(146, 33); this.ButtonDeleteAirplane.TabIndex = 2; this.ButtonDeleteAirplane.Text = "Удалить объект"; this.ButtonDeleteAirplane.UseVisualStyleBackColor = true; this.ButtonDeleteAirplane.Click += new System.EventHandler(this.ButtonDeleteAirplane_Click); // // ButtonRefreshCollection // this.ButtonRefreshCollection.Location = new System.Drawing.Point(24, 417); this.ButtonRefreshCollection.Name = "ButtonRefreshCollection"; this.ButtonRefreshCollection.Size = new System.Drawing.Size(184, 31); this.ButtonRefreshCollection.TabIndex = 4; this.ButtonRefreshCollection.Text = "Обновить коллекцию"; this.ButtonRefreshCollection.UseVisualStyleBackColor = true; this.ButtonRefreshCollection.Click += new System.EventHandler(this.ButtonRefreshCollection_Click); // // maskedTextBoxNumber // this.maskedTextBoxNumber.Location = new System.Drawing.Point(51, 384); this.maskedTextBoxNumber.Name = "maskedTextBoxNumber"; this.maskedTextBoxNumber.Size = new System.Drawing.Size(125, 27); this.maskedTextBoxNumber.TabIndex = 2; // // LabelTools // this.LabelTools.AutoSize = true; this.LabelTools.Location = new System.Drawing.Point(18, 0); this.LabelTools.Name = "LabelTools"; this.LabelTools.Size = new System.Drawing.Size(103, 20); this.LabelTools.TabIndex = 0; this.LabelTools.Text = "Инструменты"; // // pictureBoxCollection // this.pictureBoxCollection.Location = new System.Drawing.Point(1, 31); this.pictureBoxCollection.Name = "pictureBoxCollection"; this.pictureBoxCollection.Size = new System.Drawing.Size(676, 471); this.pictureBoxCollection.TabIndex = 0; this.pictureBoxCollection.TabStop = false; // // menuStrip // this.menuStrip.ImageScalingSize = new System.Drawing.Size(20, 20); this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.FileToolStripMenuItem}); this.menuStrip.Location = new System.Drawing.Point(0, 0); this.menuStrip.Name = "menuStrip"; this.menuStrip.Size = new System.Drawing.Size(900, 28); this.menuStrip.TabIndex = 2; this.menuStrip.Text = "menuStrip"; // // FileToolStripMenuItem // this.FileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.SaveToolStripMenuItem, this.LoadToolStripMenuItem}); this.FileToolStripMenuItem.Name = "FileToolStripMenuItem"; this.FileToolStripMenuItem.Size = new System.Drawing.Size(59, 24); this.FileToolStripMenuItem.Text = "Файл"; // // SaveToolStripMenuItem // this.SaveToolStripMenuItem.Name = "SaveToolStripMenuItem"; this.SaveToolStripMenuItem.Size = new System.Drawing.Size(177, 26); this.SaveToolStripMenuItem.Text = "Сохранение"; // // LoadToolStripMenuItem // this.LoadToolStripMenuItem.Name = "LoadToolStripMenuItem"; this.LoadToolStripMenuItem.Size = new System.Drawing.Size(177, 26); this.LoadToolStripMenuItem.Text = "Загрузка"; // // openFileDialog // this.openFileDialog.FileName = "openFileDialog"; this.openFileDialog.Filter = "txt file | *.txt"; // // saveFileDialog // this.saveFileDialog.Filter = "txt file | *.txt"; // // FormAirplaneCollection // this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(900, 450); this.Controls.Add(this.pictureBoxCollection); this.Controls.Add(this.toolsPanel); this.Controls.Add(this.menuStrip); this.MainMenuStrip = this.menuStrip; this.Name = "FormAirplaneCollection"; this.Text = "FormAirplaneCollection"; this.toolsPanel.ResumeLayout(false); this.toolsPanel.PerformLayout(); this.panelSets.ResumeLayout(false); this.panelSets.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBoxCollection)).EndInit(); this.menuStrip.ResumeLayout(false); this.menuStrip.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } private void LoadToolStripMenuItem_Click1(object sender, EventArgs e) { throw new NotImplementedException(); } #endregion private Panel toolsPanel; private Label LabelTools; private PictureBox pictureBoxCollection; private Button ButtonAddAirplane; private Button ButtonDeleteAirplane; public TextBox maskedTextBoxNumber; private Panel panelSets; private Label SetsLabel; private Button ButtonDelObject; private Button ButtonAddObject; private Button ButtonRefreshCollection; private ListBox listBoxObjects; private TextBox textBoxStorageName; private MenuStrip menuStrip; private ToolStripMenuItem FileToolStripMenuItem; private ToolStripMenuItem SaveToolStripMenuItem; private ToolStripMenuItem LoadToolStripMenuItem; private OpenFileDialog openFileDialog; private SaveFileDialog saveFileDialog; private Button ButtonSortByColor; private Button ButtonSortByType; } }