190 lines
7.9 KiB
C#
190 lines
7.9 KiB
C#
|
namespace FishFactory.Forms
|
|||
|
{
|
|||
|
partial class FormCanned
|
|||
|
{
|
|||
|
/// <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.label1 = new System.Windows.Forms.Label();
|
|||
|
this.label2 = new System.Windows.Forms.Label();
|
|||
|
this.button1 = new System.Windows.Forms.Button();
|
|||
|
this.button2 = new System.Windows.Forms.Button();
|
|||
|
this.button3 = new System.Windows.Forms.Button();
|
|||
|
this.button4 = new System.Windows.Forms.Button();
|
|||
|
this.dataGridView1 = new System.Windows.Forms.DataGridView();
|
|||
|
this.Component = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|||
|
this.Count = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|||
|
this.textBox1 = new System.Windows.Forms.TextBox();
|
|||
|
this.textBox2 = new System.Windows.Forms.TextBox();
|
|||
|
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
|
|||
|
this.groupBox1.SuspendLayout();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// label1
|
|||
|
//
|
|||
|
this.label1.AutoSize = true;
|
|||
|
this.label1.Location = new System.Drawing.Point(18, 16);
|
|||
|
this.label1.Name = "label1";
|
|||
|
this.label1.Size = new System.Drawing.Size(76, 16);
|
|||
|
this.label1.TabIndex = 0;
|
|||
|
this.label1.Text = "Название:";
|
|||
|
//
|
|||
|
// label2
|
|||
|
//
|
|||
|
this.label2.AutoSize = true;
|
|||
|
this.label2.Location = new System.Drawing.Point(18, 44);
|
|||
|
this.label2.Name = "label2";
|
|||
|
this.label2.Size = new System.Drawing.Size(80, 16);
|
|||
|
this.label2.TabIndex = 1;
|
|||
|
this.label2.Text = "Стоимость:";
|
|||
|
//
|
|||
|
// button1
|
|||
|
//
|
|||
|
this.button1.Location = new System.Drawing.Point(661, 47);
|
|||
|
this.button1.Name = "button1";
|
|||
|
this.button1.Size = new System.Drawing.Size(97, 30);
|
|||
|
this.button1.TabIndex = 0;
|
|||
|
this.button1.Text = "Добавить";
|
|||
|
this.button1.UseVisualStyleBackColor = true;
|
|||
|
//
|
|||
|
// button2
|
|||
|
//
|
|||
|
this.button2.Location = new System.Drawing.Point(661, 96);
|
|||
|
this.button2.Name = "button2";
|
|||
|
this.button2.Size = new System.Drawing.Size(97, 30);
|
|||
|
this.button2.TabIndex = 1;
|
|||
|
this.button2.Text = "Изменить";
|
|||
|
this.button2.UseVisualStyleBackColor = true;
|
|||
|
//
|
|||
|
// button3
|
|||
|
//
|
|||
|
this.button3.Location = new System.Drawing.Point(661, 142);
|
|||
|
this.button3.Name = "button3";
|
|||
|
this.button3.Size = new System.Drawing.Size(97, 30);
|
|||
|
this.button3.TabIndex = 2;
|
|||
|
this.button3.Text = "Удалить";
|
|||
|
this.button3.UseVisualStyleBackColor = true;
|
|||
|
//
|
|||
|
// button4
|
|||
|
//
|
|||
|
this.button4.Location = new System.Drawing.Point(661, 185);
|
|||
|
this.button4.Name = "button4";
|
|||
|
this.button4.Size = new System.Drawing.Size(97, 30);
|
|||
|
this.button4.TabIndex = 3;
|
|||
|
this.button4.Text = "Обновить";
|
|||
|
this.button4.UseVisualStyleBackColor = true;
|
|||
|
//
|
|||
|
// dataGridView1
|
|||
|
//
|
|||
|
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|||
|
this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|||
|
this.Component,
|
|||
|
this.Count});
|
|||
|
this.dataGridView1.Location = new System.Drawing.Point(0, 21);
|
|||
|
this.dataGridView1.Name = "dataGridView1";
|
|||
|
this.dataGridView1.RowHeadersWidth = 51;
|
|||
|
this.dataGridView1.RowTemplate.Height = 24;
|
|||
|
this.dataGridView1.Size = new System.Drawing.Size(627, 443);
|
|||
|
this.dataGridView1.TabIndex = 4;
|
|||
|
//
|
|||
|
// Component
|
|||
|
//
|
|||
|
this.Component.HeaderText = "Компонент";
|
|||
|
this.Component.MinimumWidth = 6;
|
|||
|
this.Component.Name = "Component";
|
|||
|
this.Component.Width = 125;
|
|||
|
//
|
|||
|
// Count
|
|||
|
//
|
|||
|
this.Count.HeaderText = "Количество";
|
|||
|
this.Count.MinimumWidth = 6;
|
|||
|
this.Count.Name = "Count";
|
|||
|
this.Count.Width = 125;
|
|||
|
//
|
|||
|
// textBox1
|
|||
|
//
|
|||
|
this.textBox1.Location = new System.Drawing.Point(107, 14);
|
|||
|
this.textBox1.Name = "textBox1";
|
|||
|
this.textBox1.Size = new System.Drawing.Size(281, 22);
|
|||
|
this.textBox1.TabIndex = 3;
|
|||
|
//
|
|||
|
// textBox2
|
|||
|
//
|
|||
|
this.textBox2.Location = new System.Drawing.Point(107, 42);
|
|||
|
this.textBox2.Name = "textBox2";
|
|||
|
this.textBox2.Size = new System.Drawing.Size(97, 22);
|
|||
|
this.textBox2.TabIndex = 4;
|
|||
|
//
|
|||
|
// groupBox1
|
|||
|
//
|
|||
|
this.groupBox1.Controls.Add(this.button4);
|
|||
|
this.groupBox1.Controls.Add(this.button3);
|
|||
|
this.groupBox1.Controls.Add(this.dataGridView1);
|
|||
|
this.groupBox1.Controls.Add(this.button2);
|
|||
|
this.groupBox1.Controls.Add(this.button1);
|
|||
|
this.groupBox1.Location = new System.Drawing.Point(16, 76);
|
|||
|
this.groupBox1.Name = "groupBox1";
|
|||
|
this.groupBox1.Size = new System.Drawing.Size(787, 464);
|
|||
|
this.groupBox1.TabIndex = 5;
|
|||
|
this.groupBox1.TabStop = false;
|
|||
|
this.groupBox1.Text = "Компоненты";
|
|||
|
//
|
|||
|
// FormCanned
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(813, 558);
|
|||
|
this.Controls.Add(this.groupBox1);
|
|||
|
this.Controls.Add(this.textBox2);
|
|||
|
this.Controls.Add(this.textBox1);
|
|||
|
this.Controls.Add(this.label2);
|
|||
|
this.Controls.Add(this.label1);
|
|||
|
this.Name = "FormCanned";
|
|||
|
this.Text = "FormCanned";
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
|
|||
|
this.groupBox1.ResumeLayout(false);
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.Label label1;
|
|||
|
private System.Windows.Forms.Label label2;
|
|||
|
private System.Windows.Forms.Button button4;
|
|||
|
private System.Windows.Forms.Button button3;
|
|||
|
private System.Windows.Forms.Button button2;
|
|||
|
private System.Windows.Forms.Button button1;
|
|||
|
private System.Windows.Forms.DataGridView dataGridView1;
|
|||
|
private System.Windows.Forms.DataGridViewTextBoxColumn Component;
|
|||
|
private System.Windows.Forms.DataGridViewTextBoxColumn Count;
|
|||
|
private System.Windows.Forms.TextBox textBox1;
|
|||
|
private System.Windows.Forms.TextBox textBox2;
|
|||
|
private System.Windows.Forms.GroupBox groupBox1;
|
|||
|
}
|
|||
|
}
|