217 lines
9.7 KiB
C#
217 lines
9.7 KiB
C#
namespace ComputersShop
|
|
{
|
|
partial class FormShop
|
|
{
|
|
/// <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.buttonCancel = new System.Windows.Forms.Button();
|
|
this.buttonSave = new System.Windows.Forms.Button();
|
|
this.dataGridView = new System.Windows.Forms.DataGridView();
|
|
this.ColumnId = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.ColumnComputerName = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.ColumnCount = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.dateTimePicker = new System.Windows.Forms.DateTimePicker();
|
|
this.labelOpeningDate = new System.Windows.Forms.Label();
|
|
this.textBoxAddress = new System.Windows.Forms.TextBox();
|
|
this.textBoxName = new System.Windows.Forms.TextBox();
|
|
this.labelAddress = new System.Windows.Forms.Label();
|
|
this.labelName = new System.Windows.Forms.Label();
|
|
this.textBoxCapacity = new System.Windows.Forms.TextBox();
|
|
this.labelCapacity = new System.Windows.Forms.Label();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// buttonCancel
|
|
//
|
|
this.buttonCancel.Location = new System.Drawing.Point(200, 375);
|
|
this.buttonCancel.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.buttonCancel.Name = "buttonCancel";
|
|
this.buttonCancel.Size = new System.Drawing.Size(136, 22);
|
|
this.buttonCancel.TabIndex = 21;
|
|
this.buttonCancel.Text = "Отмена";
|
|
this.buttonCancel.UseVisualStyleBackColor = true;
|
|
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
|
|
//
|
|
// buttonSave
|
|
//
|
|
this.buttonSave.Location = new System.Drawing.Point(42, 375);
|
|
this.buttonSave.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.buttonSave.Name = "buttonSave";
|
|
this.buttonSave.Size = new System.Drawing.Size(136, 22);
|
|
this.buttonSave.TabIndex = 20;
|
|
this.buttonSave.Text = "Сохранить";
|
|
this.buttonSave.UseVisualStyleBackColor = true;
|
|
this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click);
|
|
//
|
|
// dataGridView
|
|
//
|
|
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.ColumnId,
|
|
this.ColumnComputerName,
|
|
this.ColumnCount});
|
|
this.dataGridView.Location = new System.Drawing.Point(12, 143);
|
|
this.dataGridView.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.dataGridView.Name = "dataGridView";
|
|
this.dataGridView.RowHeadersWidth = 51;
|
|
this.dataGridView.RowTemplate.Height = 29;
|
|
this.dataGridView.Size = new System.Drawing.Size(351, 225);
|
|
this.dataGridView.TabIndex = 19;
|
|
//
|
|
// ColumnId
|
|
//
|
|
this.ColumnId.HeaderText = "ID";
|
|
this.ColumnId.MinimumWidth = 6;
|
|
this.ColumnId.Name = "ColumnId";
|
|
this.ColumnId.Visible = false;
|
|
this.ColumnId.Width = 125;
|
|
//
|
|
// ColumnComputerName
|
|
//
|
|
this.ColumnComputerName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
|
|
this.ColumnComputerName.HeaderText = "Компьютер";
|
|
this.ColumnComputerName.MinimumWidth = 6;
|
|
this.ColumnComputerName.Name = "ColumnComputerName";
|
|
//
|
|
// ColumnCount
|
|
//
|
|
this.ColumnCount.HeaderText = "Количество";
|
|
this.ColumnCount.MinimumWidth = 6;
|
|
this.ColumnCount.Name = "ColumnCount";
|
|
this.ColumnCount.Width = 125;
|
|
//
|
|
// dateTimePicker
|
|
//
|
|
this.dateTimePicker.Location = new System.Drawing.Point(144, 64);
|
|
this.dateTimePicker.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.dateTimePicker.Name = "dateTimePicker";
|
|
this.dateTimePicker.Size = new System.Drawing.Size(219, 23);
|
|
this.dateTimePicker.TabIndex = 18;
|
|
//
|
|
// labelOpeningDate
|
|
//
|
|
this.labelOpeningDate.AutoSize = true;
|
|
this.labelOpeningDate.Location = new System.Drawing.Point(12, 67);
|
|
this.labelOpeningDate.Name = "labelOpeningDate";
|
|
this.labelOpeningDate.Size = new System.Drawing.Size(100, 15);
|
|
this.labelOpeningDate.TabIndex = 17;
|
|
this.labelOpeningDate.Text = "Время открытия:";
|
|
//
|
|
// textBoxAddress
|
|
//
|
|
this.textBoxAddress.Location = new System.Drawing.Point(88, 37);
|
|
this.textBoxAddress.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.textBoxAddress.Name = "textBoxAddress";
|
|
this.textBoxAddress.Size = new System.Drawing.Size(276, 23);
|
|
this.textBoxAddress.TabIndex = 16;
|
|
//
|
|
// textBoxName
|
|
//
|
|
this.textBoxName.Location = new System.Drawing.Point(88, 12);
|
|
this.textBoxName.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.textBoxName.Name = "textBoxName";
|
|
this.textBoxName.Size = new System.Drawing.Size(276, 23);
|
|
this.textBoxName.TabIndex = 15;
|
|
//
|
|
// labelAddress
|
|
//
|
|
this.labelAddress.AutoSize = true;
|
|
this.labelAddress.Location = new System.Drawing.Point(12, 41);
|
|
this.labelAddress.Name = "labelAddress";
|
|
this.labelAddress.Size = new System.Drawing.Size(43, 15);
|
|
this.labelAddress.TabIndex = 14;
|
|
this.labelAddress.Text = "Адрес:";
|
|
//
|
|
// labelName
|
|
//
|
|
this.labelName.AutoSize = true;
|
|
this.labelName.Location = new System.Drawing.Point(12, 14);
|
|
this.labelName.Name = "labelName";
|
|
this.labelName.Size = new System.Drawing.Size(62, 15);
|
|
this.labelName.TabIndex = 13;
|
|
this.labelName.Text = "Название:";
|
|
//
|
|
// textBoxCapacity
|
|
//
|
|
this.textBoxCapacity.Location = new System.Drawing.Point(117, 91);
|
|
this.textBoxCapacity.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.textBoxCapacity.Name = "textBoxCapacity";
|
|
this.textBoxCapacity.Size = new System.Drawing.Size(246, 23);
|
|
this.textBoxCapacity.TabIndex = 23;
|
|
//
|
|
// labelCapacity
|
|
//
|
|
this.labelCapacity.AutoSize = true;
|
|
this.labelCapacity.Location = new System.Drawing.Point(11, 93);
|
|
this.labelCapacity.Name = "labelCapacity";
|
|
this.labelCapacity.Size = new System.Drawing.Size(83, 15);
|
|
this.labelCapacity.TabIndex = 22;
|
|
this.labelCapacity.Text = "Вместимость:";
|
|
//
|
|
// FormShop
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(383, 399);
|
|
this.Controls.Add(this.textBoxCapacity);
|
|
this.Controls.Add(this.labelCapacity);
|
|
this.Controls.Add(this.buttonCancel);
|
|
this.Controls.Add(this.buttonSave);
|
|
this.Controls.Add(this.dataGridView);
|
|
this.Controls.Add(this.dateTimePicker);
|
|
this.Controls.Add(this.labelOpeningDate);
|
|
this.Controls.Add(this.textBoxAddress);
|
|
this.Controls.Add(this.textBoxName);
|
|
this.Controls.Add(this.labelAddress);
|
|
this.Controls.Add(this.labelName);
|
|
this.Name = "FormShop";
|
|
this.Text = "FormShop";
|
|
this.Load += new System.EventHandler(this.FormShop_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Button buttonCancel;
|
|
private Button buttonSave;
|
|
private DataGridView dataGridView;
|
|
private DateTimePicker dateTimePicker;
|
|
private Label labelOpeningDate;
|
|
private TextBox textBoxAddress;
|
|
private TextBox textBoxName;
|
|
private Label labelAddress;
|
|
private Label labelName;
|
|
private DataGridViewTextBoxColumn ColumnId;
|
|
private DataGridViewTextBoxColumn ColumnComputerName;
|
|
private DataGridViewTextBoxColumn ColumnCount;
|
|
private TextBox textBoxCapacity;
|
|
private Label labelCapacity;
|
|
}
|
|
} |