namespace ProjectAntiAircraftGun { partial class FormTankCollection { /// /// 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() { pictureBoxCollection = new PictureBox(); maskedTextBoxNumber = new MaskedTextBox(); groupBoxInstruments = new GroupBox(); buttonUpdateCollection = new Button(); buttonDeleteTank = new Button(); buttonAddTank = new Button(); ((System.ComponentModel.ISupportInitialize)pictureBoxCollection).BeginInit(); groupBoxInstruments.SuspendLayout(); SuspendLayout(); // // pictureBoxCollection // pictureBoxCollection.Location = new Point(0, 0); pictureBoxCollection.Name = "pictureBoxCollection"; pictureBoxCollection.Size = new Size(647, 455); pictureBoxCollection.TabIndex = 0; pictureBoxCollection.TabStop = false; // // maskedTextBoxNumber // maskedTextBoxNumber.Location = new Point(24, 104); maskedTextBoxNumber.Name = "maskedTextBoxNumber"; maskedTextBoxNumber.Size = new Size(100, 23); maskedTextBoxNumber.TabIndex = 1; // // groupBoxInstruments // groupBoxInstruments.Controls.Add(buttonUpdateCollection); groupBoxInstruments.Controls.Add(buttonDeleteTank); groupBoxInstruments.Controls.Add(buttonAddTank); groupBoxInstruments.Controls.Add(maskedTextBoxNumber); groupBoxInstruments.Location = new Point(644, 0); groupBoxInstruments.Name = "groupBoxInstruments"; groupBoxInstruments.Size = new Size(158, 455); groupBoxInstruments.TabIndex = 2; groupBoxInstruments.TabStop = false; groupBoxInstruments.Text = "Инструменты"; // // buttonUpdateCollection // buttonUpdateCollection.Location = new Point(24, 252); buttonUpdateCollection.Name = "buttonUpdateCollection"; buttonUpdateCollection.Size = new Size(100, 23); buttonUpdateCollection.TabIndex = 4; buttonUpdateCollection.Text = "Обновить коллекцию"; buttonUpdateCollection.UseVisualStyleBackColor = true; buttonUpdateCollection.Click += ButtonRefreshCollection_Click; // // buttonDeleteTank // buttonDeleteTank.Location = new Point(24, 182); buttonDeleteTank.Name = "buttonDeleteTank"; buttonDeleteTank.Size = new Size(100, 23); buttonDeleteTank.TabIndex = 3; buttonDeleteTank.Text = "Удалить танк"; buttonDeleteTank.UseVisualStyleBackColor = true; buttonDeleteTank.Click += ButtonRemoveTank_Click; // // buttonAddTank // buttonAddTank.Location = new Point(24, 52); buttonAddTank.Name = "buttonAddTank"; buttonAddTank.Size = new Size(100, 23); buttonAddTank.TabIndex = 2; buttonAddTank.Text = "Добавить танк"; buttonAddTank.UseVisualStyleBackColor = true; buttonAddTank.Click += ButtonAddTank_Click; // // FormTankCollection // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(800, 450); Controls.Add(groupBoxInstruments); Controls.Add(pictureBoxCollection); Name = "FormTankCollection"; Text = "Набор танков"; ((System.ComponentModel.ISupportInitialize)pictureBoxCollection).EndInit(); groupBoxInstruments.ResumeLayout(false); groupBoxInstruments.PerformLayout(); ResumeLayout(false); } #endregion private PictureBox pictureBoxCollection; private MaskedTextBox maskedTextBoxNumber; private GroupBox groupBoxInstruments; private Button buttonUpdateCollection; private Button buttonDeleteTank; private Button buttonAddTank; } }