namespace AutomobilePlant { partial class FormCars { /// /// 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.dataGridView = new System.Windows.Forms.DataGridView(); this.buttonAdd = new System.Windows.Forms.Button(); this.buttonEdit = new System.Windows.Forms.Button(); this.buttonDelete = new System.Windows.Forms.Button(); this.buttonUpdate = new System.Windows.Forms.Button(); ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit(); this.SuspendLayout(); // // dataGridView // this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dataGridView.Location = new System.Drawing.Point(12, 12); this.dataGridView.Name = "dataGridView"; this.dataGridView.RowHeadersWidth = 51; this.dataGridView.RowTemplate.Height = 29; this.dataGridView.Size = new System.Drawing.Size(507, 426); this.dataGridView.TabIndex = 1; // // buttonAdd // this.buttonAdd.Location = new System.Drawing.Point(533, 12); this.buttonAdd.Name = "buttonAdd"; this.buttonAdd.Size = new System.Drawing.Size(152, 29); this.buttonAdd.TabIndex = 2; this.buttonAdd.Text = "Добавить"; this.buttonAdd.UseVisualStyleBackColor = true; this.buttonAdd.Click += new System.EventHandler(this.ButtonAdd_Click); // // buttonEdit // this.buttonEdit.Location = new System.Drawing.Point(533, 47); this.buttonEdit.Name = "buttonEdit"; this.buttonEdit.Size = new System.Drawing.Size(152, 29); this.buttonEdit.TabIndex = 3; this.buttonEdit.Text = "Изменить"; this.buttonEdit.UseVisualStyleBackColor = true; this.buttonEdit.Click += new System.EventHandler(this.ButtonEdit_Click); // // buttonDelete // this.buttonDelete.Location = new System.Drawing.Point(533, 82); this.buttonDelete.Name = "buttonDelete"; this.buttonDelete.Size = new System.Drawing.Size(152, 29); this.buttonDelete.TabIndex = 4; this.buttonDelete.Text = "Удалить"; this.buttonDelete.UseVisualStyleBackColor = true; this.buttonDelete.Click += new System.EventHandler(this.ButtonDelete_Click); // // buttonUpdate // this.buttonUpdate.Location = new System.Drawing.Point(533, 409); this.buttonUpdate.Name = "buttonUpdate"; this.buttonUpdate.Size = new System.Drawing.Size(152, 29); this.buttonUpdate.TabIndex = 5; this.buttonUpdate.Text = "Обновить"; this.buttonUpdate.UseVisualStyleBackColor = true; this.buttonUpdate.Click += new System.EventHandler(this.ButtonUpdate_Click); // // FormCars // this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(697, 450); this.Controls.Add(this.buttonUpdate); this.Controls.Add(this.buttonDelete); this.Controls.Add(this.buttonEdit); this.Controls.Add(this.buttonAdd); this.Controls.Add(this.dataGridView); this.Name = "FormCars"; this.Text = "Автомобили"; this.Load += new System.EventHandler(this.FormCars_Load); ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit(); this.ResumeLayout(false); } #endregion private DataGridView dataGridView; private Button buttonAdd; private Button buttonEdit; private Button buttonDelete; private Button buttonUpdate; } }