namespace YourNamespace.Forms { partial class FormAirports { /// /// 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.dataGridViewData = new System.Windows.Forms.DataGridView(); this.buttonAdd = new System.Windows.Forms.Button(); this.buttonUpd = new System.Windows.Forms.Button(); this.buttonDel = new System.Windows.Forms.Button(); ((System.ComponentModel.ISupportInitialize)(this.dataGridViewData)).BeginInit(); this.SuspendLayout(); // Вызов SuspendLayout // // dataGridViewData // this.dataGridViewData.AllowUserToAddRows = false; this.dataGridViewData.AllowUserToDeleteRows = false; this.dataGridViewData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dataGridViewData.Dock = System.Windows.Forms.DockStyle.Fill; this.dataGridViewData.Location = new System.Drawing.Point(0, 0); this.dataGridViewData.MultiSelect = false; this.dataGridViewData.Name = "dataGridViewData"; this.dataGridViewData.ReadOnly = true; this.dataGridViewData.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; this.dataGridViewData.Size = new System.Drawing.Size(800, 450); this.dataGridViewData.TabIndex = 0; // // buttonAdd // this.buttonAdd.Location = new System.Drawing.Point(12, 12); this.buttonAdd.Name = "buttonAdd"; this.buttonAdd.Size = new System.Drawing.Size(75, 23); this.buttonAdd.TabIndex = 1; this.buttonAdd.Text = "Добавить"; this.buttonAdd.UseVisualStyleBackColor = true; this.buttonAdd.Click += new System.EventHandler(this.ButtonAdd_Click); // // buttonUpd // this.buttonUpd.Location = new System.Drawing.Point(93, 12); this.buttonUpd.Name = "buttonUpd"; this.buttonUpd.Size = new System.Drawing.Size(75, 23); this.buttonUpd.TabIndex = 2; this.buttonUpd.Text = "Изменить"; this.buttonUpd.UseVisualStyleBackColor = true; this.buttonUpd.Click += new System.EventHandler(this.ButtonUpd_Click); // // buttonDel // this.buttonDel.Location = new System.Drawing.Point(174, 12); this.buttonDel.Name = "buttonDel"; this.buttonDel.Size = new System.Drawing.Size(75, 23); this.buttonDel.TabIndex = 3; this.buttonDel.Text = "Удалить"; this.buttonDel.UseVisualStyleBackColor = true; this.buttonDel.Click += new System.EventHandler(this.ButtonDel_Click); // // FormAirports // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(800, 450); this.Controls.Add(this.buttonDel); this.Controls.Add(this.buttonUpd); this.Controls.Add(this.buttonAdd); this.Controls.Add(this.dataGridViewData); this.Name = "FormAirports"; this.Text = "Аэропорты"; this.Load += new System.EventHandler(this.FormAirports_Load); ((System.ComponentModel.ISupportInitialize)(this.dataGridViewData)).EndInit(); this.ResumeLayout(false); // Вызов ResumeLayout } #endregion private System.Windows.Forms.DataGridView dataGridViewData; private System.Windows.Forms.Button buttonAdd; private System.Windows.Forms.Button buttonUpd; private System.Windows.Forms.Button buttonDel; } }