189 lines
8.0 KiB
C#
189 lines
8.0 KiB
C#
namespace AircraftPlantView
|
|
{
|
|
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.labelName = new System.Windows.Forms.Label();
|
|
this.labelAddress = new System.Windows.Forms.Label();
|
|
this.labelDate = new System.Windows.Forms.Label();
|
|
this.textBoxName = new System.Windows.Forms.TextBox();
|
|
this.textBoxAddress = new System.Windows.Forms.TextBox();
|
|
this.dateTimePicker = new System.Windows.Forms.DateTimePicker();
|
|
this.dataGridViewShop = new System.Windows.Forms.DataGridView();
|
|
this.buttonSave = new System.Windows.Forms.Button();
|
|
this.buttonCancel = new System.Windows.Forms.Button();
|
|
this.ColumnID = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.ColumnPlane = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.ColumnCount = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridViewShop)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// labelName
|
|
//
|
|
this.labelName.AutoSize = true;
|
|
this.labelName.Location = new System.Drawing.Point(12, 9);
|
|
this.labelName.Name = "labelName";
|
|
this.labelName.Size = new System.Drawing.Size(62, 15);
|
|
this.labelName.TabIndex = 0;
|
|
this.labelName.Text = "Название:";
|
|
//
|
|
// labelAddress
|
|
//
|
|
this.labelAddress.AutoSize = true;
|
|
this.labelAddress.Location = new System.Drawing.Point(12, 39);
|
|
this.labelAddress.Name = "labelAddress";
|
|
this.labelAddress.Size = new System.Drawing.Size(43, 15);
|
|
this.labelAddress.TabIndex = 1;
|
|
this.labelAddress.Text = "Адрес:";
|
|
//
|
|
// labelDate
|
|
//
|
|
this.labelDate.AutoSize = true;
|
|
this.labelDate.Location = new System.Drawing.Point(12, 74);
|
|
this.labelDate.Name = "labelDate";
|
|
this.labelDate.Size = new System.Drawing.Size(90, 15);
|
|
this.labelDate.TabIndex = 2;
|
|
this.labelDate.Text = "Дата открытия:";
|
|
//
|
|
// textBoxName
|
|
//
|
|
this.textBoxName.Location = new System.Drawing.Point(116, 6);
|
|
this.textBoxName.Name = "textBoxName";
|
|
this.textBoxName.Size = new System.Drawing.Size(200, 23);
|
|
this.textBoxName.TabIndex = 3;
|
|
//
|
|
// textBoxAddress
|
|
//
|
|
this.textBoxAddress.Location = new System.Drawing.Point(116, 39);
|
|
this.textBoxAddress.Name = "textBoxAddress";
|
|
this.textBoxAddress.Size = new System.Drawing.Size(200, 23);
|
|
this.textBoxAddress.TabIndex = 4;
|
|
//
|
|
// dateTimePicker
|
|
//
|
|
this.dateTimePicker.Location = new System.Drawing.Point(116, 74);
|
|
this.dateTimePicker.Name = "dateTimePicker";
|
|
this.dateTimePicker.Size = new System.Drawing.Size(200, 23);
|
|
this.dateTimePicker.TabIndex = 5;
|
|
//
|
|
// dataGridViewShop
|
|
//
|
|
this.dataGridViewShop.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dataGridViewShop.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.ColumnID,
|
|
this.ColumnPlane,
|
|
this.ColumnCount});
|
|
this.dataGridViewShop.Location = new System.Drawing.Point(26, 118);
|
|
this.dataGridViewShop.Name = "dataGridViewShop";
|
|
this.dataGridViewShop.RowTemplate.Height = 25;
|
|
this.dataGridViewShop.Size = new System.Drawing.Size(446, 325);
|
|
this.dataGridViewShop.TabIndex = 6;
|
|
//
|
|
// buttonSave
|
|
//
|
|
this.buttonSave.Location = new System.Drawing.Point(316, 444);
|
|
this.buttonSave.Name = "buttonSave";
|
|
this.buttonSave.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonSave.TabIndex = 7;
|
|
this.buttonSave.Text = "Сохранить";
|
|
this.buttonSave.UseVisualStyleBackColor = true;
|
|
this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click);
|
|
//
|
|
// buttonCancel
|
|
//
|
|
this.buttonCancel.Location = new System.Drawing.Point(397, 444);
|
|
this.buttonCancel.Name = "buttonCancel";
|
|
this.buttonCancel.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonCancel.TabIndex = 8;
|
|
this.buttonCancel.Text = "Отмена";
|
|
this.buttonCancel.UseVisualStyleBackColor = true;
|
|
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
|
|
//
|
|
// ColumnID
|
|
//
|
|
this.ColumnID.HeaderText = "ID";
|
|
this.ColumnID.Name = "ColumnID";
|
|
this.ColumnID.Visible = false;
|
|
//
|
|
// ColumnPlane
|
|
//
|
|
this.ColumnPlane.HeaderText = "Изделие";
|
|
this.ColumnPlane.Name = "ColumnPlane";
|
|
this.ColumnPlane.Width = 300;
|
|
//
|
|
// ColumnCount
|
|
//
|
|
this.ColumnCount.HeaderText = "Количество";
|
|
this.ColumnCount.Name = "ColumnCount";
|
|
//
|
|
// FormShop
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(481, 470);
|
|
this.Controls.Add(this.buttonCancel);
|
|
this.Controls.Add(this.buttonSave);
|
|
this.Controls.Add(this.dataGridViewShop);
|
|
this.Controls.Add(this.dateTimePicker);
|
|
this.Controls.Add(this.textBoxAddress);
|
|
this.Controls.Add(this.textBoxName);
|
|
this.Controls.Add(this.labelDate);
|
|
this.Controls.Add(this.labelAddress);
|
|
this.Controls.Add(this.labelName);
|
|
this.Name = "FormShop";
|
|
this.Text = "Магазин";
|
|
this.Load += new System.EventHandler(this.FormShop_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridViewShop)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label label1;
|
|
private Label label2;
|
|
private Label label3;
|
|
private TextBox textBoxName;
|
|
private TextBox textBoxAddress;
|
|
private DateTimePicker dateTimePicker;
|
|
private DataGridView dataGridView;
|
|
private DataGridViewTextBoxColumn Plane;
|
|
private DataGridViewTextBoxColumn Count;
|
|
private Button buttonSave;
|
|
private Button buttonCancel;
|
|
private Label labelName;
|
|
private Label labelAddress;
|
|
private Label labelDate;
|
|
private DataGridView dataGridViewShops;
|
|
private DataGridViewTextBoxColumn ColumnID;
|
|
private DataGridViewTextBoxColumn ColumnPlane;
|
|
private DataGridViewTextBoxColumn ColumnCount;
|
|
private DataGridView dataGridViewShop;
|
|
}
|
|
} |