124 lines
5.8 KiB
C#
124 lines
5.8 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.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();
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBoxCollection)).BeginInit();
|
|
this.groupBoxTools.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// pictureBoxCollection
|
|
//
|
|
this.pictureBoxCollection.Location = new System.Drawing.Point(0, 1);
|
|
this.pictureBoxCollection.Name = "pictureBoxCollection";
|
|
this.pictureBoxCollection.Size = new System.Drawing.Size(741, 459);
|
|
this.pictureBoxCollection.TabIndex = 0;
|
|
this.pictureBoxCollection.TabStop = false;
|
|
//
|
|
// groupBoxTools
|
|
//
|
|
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.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 = "Инструменты";
|
|
//
|
|
// maskedTextBoxNumber
|
|
//
|
|
this.maskedTextBoxNumber.Location = new System.Drawing.Point(0, 108);
|
|
this.maskedTextBoxNumber.Name = "maskedTextBoxNumber";
|
|
this.maskedTextBoxNumber.Size = new System.Drawing.Size(141, 23);
|
|
this.maskedTextBoxNumber.TabIndex = 3;
|
|
//
|
|
// ButtonRefreshCollection
|
|
//
|
|
this.ButtonRefreshCollection.Location = new System.Drawing.Point(0, 211);
|
|
this.ButtonRefreshCollection.Name = "ButtonRefreshCollection";
|
|
this.ButtonRefreshCollection.Size = new System.Drawing.Size(141, 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(0, 157);
|
|
this.ButtonRemoveCatamaran.Name = "ButtonRemoveCatamaran";
|
|
this.ButtonRemoveCatamaran.Size = new System.Drawing.Size(141, 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(0, 22);
|
|
this.ButtonAddCatamaran.Name = "ButtonAddCatamaran";
|
|
this.ButtonAddCatamaran.Size = new System.Drawing.Size(141, 34);
|
|
this.ButtonAddCatamaran.TabIndex = 0;
|
|
this.ButtonAddCatamaran.Text = "Добавить катамаран";
|
|
this.ButtonAddCatamaran.UseVisualStyleBackColor = true;
|
|
this.ButtonAddCatamaran.Click += new System.EventHandler(this.ButtonAddCatamaran_Click);
|
|
//
|
|
// FormCatamaranCollection
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(884, 461);
|
|
this.Controls.Add(this.groupBoxTools);
|
|
this.Controls.Add(this.pictureBoxCollection);
|
|
this.Name = "FormCatamaranCollection";
|
|
this.Text = "FormCatamaranCollection";
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBoxCollection)).EndInit();
|
|
this.groupBoxTools.ResumeLayout(false);
|
|
this.groupBoxTools.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private PictureBox pictureBoxCollection;
|
|
private GroupBox groupBoxTools;
|
|
private Button ButtonAddCatamaran;
|
|
private Button ButtonRefreshCollection;
|
|
private Button ButtonRemoveCatamaran;
|
|
private MaskedTextBox maskedTextBoxNumber;
|
|
}
|
|
} |