namespace ProjectAirline.Forms { partial class FormAirplanes { /// /// 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() { panel1 = new Panel(); buttonUpd = new Button(); buttonDel = new Button(); buttonAdd = new Button(); dataGridView = new DataGridView(); panel1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit(); SuspendLayout(); // // panel1 // panel1.Controls.Add(buttonUpd); panel1.Controls.Add(buttonDel); panel1.Controls.Add(buttonAdd); panel1.Dock = DockStyle.Right; panel1.Location = new Point(612, 0); panel1.Name = "panel1"; panel1.Size = new Size(187, 468); panel1.TabIndex = 0; // // buttonUpd // buttonUpd.BackColor = SystemColors.ButtonHighlight; buttonUpd.BackgroundImage = Properties.Resources.edit; buttonUpd.BackgroundImageLayout = ImageLayout.Stretch; buttonUpd.Location = new Point(57, 203); buttonUpd.Name = "buttonUpd"; buttonUpd.Size = new Size(88, 79); buttonUpd.TabIndex = 2; buttonUpd.UseVisualStyleBackColor = false; buttonUpd.Click += ButtonUpd_Click; // // buttonDel // buttonDel.BackColor = SystemColors.ButtonHighlight; buttonDel.BackgroundImage = Properties.Resources.minus; buttonDel.BackgroundImageLayout = ImageLayout.Stretch; buttonDel.Location = new Point(57, 120); buttonDel.Name = "buttonDel"; buttonDel.Size = new Size(88, 77); buttonDel.TabIndex = 1; buttonDel.UseVisualStyleBackColor = false; buttonDel.Click += ButtonDel_Click; // // buttonAdd // buttonAdd.BackColor = SystemColors.ButtonHighlight; buttonAdd.BackgroundImage = Properties.Resources.plus; buttonAdd.BackgroundImageLayout = ImageLayout.Stretch; buttonAdd.Location = new Point(57, 40); buttonAdd.Name = "buttonAdd"; buttonAdd.Size = new Size(88, 74); buttonAdd.TabIndex = 0; buttonAdd.UseVisualStyleBackColor = false; buttonAdd.Click += ButtonAdd_Click; // // dataGridView // dataGridView.AllowUserToAddRows = false; dataGridView.AllowUserToDeleteRows = false; dataGridView.AllowUserToResizeColumns = false; dataGridView.AllowUserToResizeRows = false; dataGridView.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill; dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize; dataGridView.Dock = DockStyle.Fill; dataGridView.Location = new Point(0, 0); dataGridView.MultiSelect = false; dataGridView.Name = "dataGridView"; dataGridView.ReadOnly = true; dataGridView.RowHeadersVisible = false; dataGridView.RowHeadersWidth = 51; dataGridView.SelectionMode = DataGridViewSelectionMode.FullRowSelect; dataGridView.Size = new Size(612, 468); dataGridView.TabIndex = 1; // // FormAirplanes // AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(799, 468); Controls.Add(dataGridView); Controls.Add(panel1); Name = "FormAirplanes"; StartPosition = FormStartPosition.CenterParent; Text = "Самолёты"; Load += FormAirplanes_Load; panel1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)dataGridView).EndInit(); ResumeLayout(false); } #endregion private Panel panel1; private Button buttonUpd; private Button buttonDel; private Button buttonAdd; private DataGridView dataGridView; } }