namespace AircraftPlantView { partial class FormShop { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.label3 = 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.dataGridView = new System.Windows.Forms.DataGridView(); this.buttonSave = new System.Windows.Forms.Button(); this.buttonCancel = new System.Windows.Forms.Button(); this.Plane = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Count = new System.Windows.Forms.DataGridViewTextBoxColumn(); ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(12, 9); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(62, 15); this.label1.TabIndex = 0; this.label1.Text = "Название:"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(12, 39); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(43, 15); this.label2.TabIndex = 1; this.label2.Text = "Адрес:"; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(12, 74); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(90, 15); this.label3.TabIndex = 2; this.label3.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; // // dataGridView // this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.Plane, this.Count}); this.dataGridView.Location = new System.Drawing.Point(26, 118); this.dataGridView.Name = "dataGridView"; this.dataGridView.RowTemplate.Height = 25; this.dataGridView.Size = new System.Drawing.Size(446, 325); this.dataGridView.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); // // Plane // this.Plane.HeaderText = "Изделие"; this.Plane.Name = "Plane"; this.Plane.Width = 300; // // Count // this.Count.HeaderText = "Количество"; this.Count.Name = "Count"; // // 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.dataGridView); this.Controls.Add(this.dateTimePicker); this.Controls.Add(this.textBoxAddress); this.Controls.Add(this.textBoxName); this.Controls.Add(this.label3); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Name = "FormShop"; this.Text = "Магазин"; this.Load += new System.EventHandler(this.FormShop_Load); ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).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; } }