236 lines
10 KiB
C#
236 lines
10 KiB
C#
namespace ComputersShopView
|
||
{
|
||
partial class FormComputer
|
||
{
|
||
/// <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.groupBox1 = new System.Windows.Forms.GroupBox();
|
||
this.dataGridView = new System.Windows.Forms.DataGridView();
|
||
this.buttonUpd = new System.Windows.Forms.Button();
|
||
this.buttonDel = new System.Windows.Forms.Button();
|
||
this.buttonRef = new System.Windows.Forms.Button();
|
||
this.buttonAdd = new System.Windows.Forms.Button();
|
||
this.buttonSave = new System.Windows.Forms.Button();
|
||
this.buttonCancel = new System.Windows.Forms.Button();
|
||
this.labelName = new System.Windows.Forms.Label();
|
||
this.labelPrice = new System.Windows.Forms.Label();
|
||
this.textBoxPrice = new System.Windows.Forms.TextBox();
|
||
this.textBoxName = new System.Windows.Forms.TextBox();
|
||
this.ColumnId = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||
this.ColumnComponent = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||
this.ColumnCount = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||
this.groupBox1.SuspendLayout();
|
||
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
||
this.SuspendLayout();
|
||
//
|
||
// groupBox1
|
||
//
|
||
this.groupBox1.Controls.Add(this.dataGridView);
|
||
this.groupBox1.Controls.Add(this.buttonUpd);
|
||
this.groupBox1.Controls.Add(this.buttonDel);
|
||
this.groupBox1.Controls.Add(this.buttonRef);
|
||
this.groupBox1.Controls.Add(this.buttonAdd);
|
||
this.groupBox1.Location = new System.Drawing.Point(12, 111);
|
||
this.groupBox1.Name = "groupBox1";
|
||
this.groupBox1.Size = new System.Drawing.Size(776, 292);
|
||
this.groupBox1.TabIndex = 0;
|
||
this.groupBox1.TabStop = false;
|
||
this.groupBox1.Text = "Компоненты";
|
||
//
|
||
// dataGridView
|
||
//
|
||
this.dataGridView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||
| System.Windows.Forms.AnchorStyles.Left)
|
||
| System.Windows.Forms.AnchorStyles.Right)));
|
||
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
||
this.dataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
||
this.ColumnId,
|
||
this.ColumnComponent,
|
||
this.ColumnCount});
|
||
this.dataGridView.Location = new System.Drawing.Point(6, 26);
|
||
this.dataGridView.Name = "dataGridView";
|
||
this.dataGridView.RowHeadersWidth = 51;
|
||
this.dataGridView.RowTemplate.Height = 29;
|
||
this.dataGridView.Size = new System.Drawing.Size(619, 259);
|
||
this.dataGridView.TabIndex = 6;
|
||
//
|
||
// buttonUpd
|
||
//
|
||
this.buttonUpd.Location = new System.Drawing.Point(648, 98);
|
||
this.buttonUpd.Name = "buttonUpd";
|
||
this.buttonUpd.Size = new System.Drawing.Size(94, 29);
|
||
this.buttonUpd.TabIndex = 3;
|
||
this.buttonUpd.Text = "Изменить";
|
||
this.buttonUpd.UseVisualStyleBackColor = true;
|
||
this.buttonUpd.Click += new System.EventHandler(this.ButtonUpd_Click);
|
||
//
|
||
// buttonDel
|
||
//
|
||
this.buttonDel.Location = new System.Drawing.Point(648, 160);
|
||
this.buttonDel.Name = "buttonDel";
|
||
this.buttonDel.Size = new System.Drawing.Size(94, 29);
|
||
this.buttonDel.TabIndex = 4;
|
||
this.buttonDel.Text = "Удалить";
|
||
this.buttonDel.UseVisualStyleBackColor = true;
|
||
this.buttonDel.Click += new System.EventHandler(this.ButtonDel_Click);
|
||
//
|
||
// buttonRef
|
||
//
|
||
this.buttonRef.Location = new System.Drawing.Point(648, 220);
|
||
this.buttonRef.Name = "buttonRef";
|
||
this.buttonRef.Size = new System.Drawing.Size(94, 29);
|
||
this.buttonRef.TabIndex = 5;
|
||
this.buttonRef.Text = "Обновить";
|
||
this.buttonRef.UseVisualStyleBackColor = true;
|
||
this.buttonRef.Click += new System.EventHandler(this.ButtonRef_Click);
|
||
//
|
||
// buttonAdd
|
||
//
|
||
this.buttonAdd.Location = new System.Drawing.Point(648, 35);
|
||
this.buttonAdd.Name = "buttonAdd";
|
||
this.buttonAdd.Size = new System.Drawing.Size(94, 29);
|
||
this.buttonAdd.TabIndex = 2;
|
||
this.buttonAdd.Text = "Добавить";
|
||
this.buttonAdd.UseVisualStyleBackColor = true;
|
||
this.buttonAdd.Click += new System.EventHandler(this.ButtonAdd_Click);
|
||
//
|
||
// buttonSave
|
||
//
|
||
this.buttonSave.Location = new System.Drawing.Point(513, 409);
|
||
this.buttonSave.Name = "buttonSave";
|
||
this.buttonSave.Size = new System.Drawing.Size(118, 29);
|
||
this.buttonSave.TabIndex = 0;
|
||
this.buttonSave.Text = "Сохранить";
|
||
this.buttonSave.UseVisualStyleBackColor = true;
|
||
this.buttonSave.Click += new System.EventHandler(this.ButtonSave_Click);
|
||
//
|
||
// buttonCancel
|
||
//
|
||
this.buttonCancel.Location = new System.Drawing.Point(652, 409);
|
||
this.buttonCancel.Name = "buttonCancel";
|
||
this.buttonCancel.Size = new System.Drawing.Size(111, 29);
|
||
this.buttonCancel.TabIndex = 1;
|
||
this.buttonCancel.Text = "Отмена";
|
||
this.buttonCancel.UseVisualStyleBackColor = true;
|
||
this.buttonCancel.Click += new System.EventHandler(this.ButtonCancel_Click);
|
||
//
|
||
// labelName
|
||
//
|
||
this.labelName.AutoSize = true;
|
||
this.labelName.Location = new System.Drawing.Point(12, 30);
|
||
this.labelName.Name = "labelName";
|
||
this.labelName.Size = new System.Drawing.Size(80, 20);
|
||
this.labelName.TabIndex = 6;
|
||
this.labelName.Text = "Название:";
|
||
//
|
||
// labelPrice
|
||
//
|
||
this.labelPrice.AutoSize = true;
|
||
this.labelPrice.Location = new System.Drawing.Point(12, 75);
|
||
this.labelPrice.Name = "labelPrice";
|
||
this.labelPrice.Size = new System.Drawing.Size(86, 20);
|
||
this.labelPrice.TabIndex = 7;
|
||
this.labelPrice.Text = "Стоимость:";
|
||
//
|
||
// textBoxPrice
|
||
//
|
||
this.textBoxPrice.Enabled = false;
|
||
this.textBoxPrice.Location = new System.Drawing.Point(110, 75);
|
||
this.textBoxPrice.Name = "textBoxPrice";
|
||
this.textBoxPrice.Size = new System.Drawing.Size(231, 27);
|
||
this.textBoxPrice.TabIndex = 8;
|
||
//
|
||
// textBoxName
|
||
//
|
||
this.textBoxName.Location = new System.Drawing.Point(110, 27);
|
||
this.textBoxName.Name = "textBoxName";
|
||
this.textBoxName.Size = new System.Drawing.Size(368, 27);
|
||
this.textBoxName.TabIndex = 9;
|
||
//
|
||
// ColumnId
|
||
//
|
||
this.ColumnId.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
|
||
this.ColumnId.HeaderText = "Id";
|
||
this.ColumnId.MinimumWidth = 6;
|
||
this.ColumnId.Name = "ColumnId";
|
||
this.ColumnId.Visible = false;
|
||
//
|
||
// ColumnComponent
|
||
//
|
||
this.ColumnComponent.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
|
||
this.ColumnComponent.HeaderText = "Компонент";
|
||
this.ColumnComponent.MinimumWidth = 6;
|
||
this.ColumnComponent.Name = "ColumnComponent";
|
||
//
|
||
// ColumnCount
|
||
//
|
||
this.ColumnCount.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
|
||
this.ColumnCount.HeaderText = "Количество";
|
||
this.ColumnCount.MinimumWidth = 100;
|
||
this.ColumnCount.Name = "ColumnCount";
|
||
//
|
||
// FormComputer
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(800, 450);
|
||
this.Controls.Add(this.textBoxName);
|
||
this.Controls.Add(this.textBoxPrice);
|
||
this.Controls.Add(this.labelName);
|
||
this.Controls.Add(this.labelPrice);
|
||
this.Controls.Add(this.buttonSave);
|
||
this.Controls.Add(this.buttonCancel);
|
||
this.Controls.Add(this.groupBox1);
|
||
this.Name = "FormComputer";
|
||
this.Text = "Изделие";
|
||
this.Load += new System.EventHandler(this.FormСomputer_Load);
|
||
this.groupBox1.ResumeLayout(false);
|
||
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private GroupBox groupBox1;
|
||
private Button buttonUpd;
|
||
private Button buttonDel;
|
||
private Button buttonRef;
|
||
private Button buttonAdd;
|
||
private Button buttonSave;
|
||
private Button buttonCancel;
|
||
private Label labelName;
|
||
private Label labelPrice;
|
||
private TextBox textBoxPrice;
|
||
private TextBox textBoxName;
|
||
private DataGridView dataGridView;
|
||
private DataGridViewTextBoxColumn ColumnId;
|
||
private DataGridViewTextBoxColumn ColumnComponent;
|
||
private DataGridViewTextBoxColumn ColumnCount;
|
||
}
|
||
} |