114 lines
4.4 KiB
C#
114 lines
4.4 KiB
C#
|
namespace Catamaran
|
|||
|
{
|
|||
|
partial class FormCatamaranCollection
|
|||
|
{
|
|||
|
|
|||
|
private System.ComponentModel.IContainer components = null;
|
|||
|
|
|||
|
protected override void Dispose(bool disposing)
|
|||
|
{
|
|||
|
if (disposing && (components != null))
|
|||
|
{
|
|||
|
components.Dispose();
|
|||
|
}
|
|||
|
base.Dispose(disposing);
|
|||
|
}
|
|||
|
|
|||
|
#region Windows Form Designer generated code
|
|||
|
|
|||
|
|
|||
|
private void InitializeComponent()
|
|||
|
{
|
|||
|
groupBoxCollection=new GroupBox();
|
|||
|
maskedTextBox=new MaskedTextBox();
|
|||
|
buttonUpdateCollection=new Button();
|
|||
|
buttonDeleteCat=new Button();
|
|||
|
buttonAddCat=new Button();
|
|||
|
pictureBoxCollection=new PictureBox();
|
|||
|
groupBoxCollection.SuspendLayout();
|
|||
|
((System.ComponentModel.ISupportInitialize)pictureBoxCollection).BeginInit();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// groupBoxCollection
|
|||
|
//
|
|||
|
groupBoxCollection.Controls.Add(maskedTextBox);
|
|||
|
groupBoxCollection.Controls.Add(buttonUpdateCollection);
|
|||
|
groupBoxCollection.Controls.Add(buttonDeleteCat);
|
|||
|
groupBoxCollection.Controls.Add(buttonAddCat);
|
|||
|
groupBoxCollection.Location=new Point(889, 12);
|
|||
|
groupBoxCollection.Name="groupBoxCollection";
|
|||
|
groupBoxCollection.Size=new Size(242, 637);
|
|||
|
groupBoxCollection.TabIndex=0;
|
|||
|
groupBoxCollection.TabStop=false;
|
|||
|
groupBoxCollection.Text="Инструменты";
|
|||
|
//
|
|||
|
// maskedTextBox
|
|||
|
//
|
|||
|
maskedTextBox.Location=new Point(21, 138);
|
|||
|
maskedTextBox.Name="maskedTextBox";
|
|||
|
maskedTextBox.Size=new Size(215, 31);
|
|||
|
maskedTextBox.TabIndex=2;
|
|||
|
//
|
|||
|
// buttonUpdateCollection
|
|||
|
//
|
|||
|
buttonUpdateCollection.Location=new Point(21, 286);
|
|||
|
buttonUpdateCollection.Name="buttonUpdateCollection";
|
|||
|
buttonUpdateCollection.Size=new Size(215, 54);
|
|||
|
buttonUpdateCollection.TabIndex=2;
|
|||
|
buttonUpdateCollection.Text="Обновить коллекцию";
|
|||
|
buttonUpdateCollection.UseVisualStyleBackColor=true;
|
|||
|
buttonUpdateCollection.Click+=ButtonRefreshCollection_Click;
|
|||
|
//
|
|||
|
// buttonDeleteCat
|
|||
|
//
|
|||
|
buttonDeleteCat.Location=new Point(21, 186);
|
|||
|
buttonDeleteCat.Name="buttonDeleteCat";
|
|||
|
buttonDeleteCat.Size=new Size(215, 54);
|
|||
|
buttonDeleteCat.TabIndex=1;
|
|||
|
buttonDeleteCat.Text="Удалить катамаран";
|
|||
|
buttonDeleteCat.UseVisualStyleBackColor=true;
|
|||
|
buttonDeleteCat.Click+=ButtonRemoveCat_Click;
|
|||
|
//
|
|||
|
// buttonAddCat
|
|||
|
//
|
|||
|
buttonAddCat.Location=new Point(21, 39);
|
|||
|
buttonAddCat.Name="buttonAddCat";
|
|||
|
buttonAddCat.Size=new Size(215, 54);
|
|||
|
buttonAddCat.TabIndex=0;
|
|||
|
buttonAddCat.Text="Добавить катамаран";
|
|||
|
buttonAddCat.UseVisualStyleBackColor=true;
|
|||
|
buttonAddCat.Click+=ButtonAddCat_Click;
|
|||
|
//
|
|||
|
// pictureBoxCollection
|
|||
|
//
|
|||
|
pictureBoxCollection.Location=new Point(0, 0);
|
|||
|
pictureBoxCollection.Name="pictureBoxCollection";
|
|||
|
pictureBoxCollection.Size=new Size(883, 750);
|
|||
|
pictureBoxCollection.TabIndex=1;
|
|||
|
pictureBoxCollection.TabStop=false;
|
|||
|
//
|
|||
|
// FormCatamaranCollection
|
|||
|
//
|
|||
|
AutoScaleDimensions=new SizeF(10F, 25F);
|
|||
|
AutoScaleMode=AutoScaleMode.Font;
|
|||
|
ClientSize=new Size(1143, 750);
|
|||
|
Controls.Add(pictureBoxCollection);
|
|||
|
Controls.Add(groupBoxCollection);
|
|||
|
Name="FormCatamaranCollection";
|
|||
|
Text="FormCatamaranCollection";
|
|||
|
groupBoxCollection.ResumeLayout(false);
|
|||
|
groupBoxCollection.PerformLayout();
|
|||
|
((System.ComponentModel.ISupportInitialize)pictureBoxCollection).EndInit();
|
|||
|
ResumeLayout(false);
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private GroupBox groupBoxCollection;
|
|||
|
private Button buttonAddCat;
|
|||
|
private Button buttonUpdateCollection;
|
|||
|
private Button buttonDeleteCat;
|
|||
|
private MaskedTextBox maskedTextBox;
|
|||
|
public PictureBox pictureBoxCollection;
|
|||
|
}
|
|||
|
}
|