namespace ProjectAirline.Forms { partial class FormFlights { /// /// 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(); buttonRemove = new Button(); buttonAdd = new Button(); dataGridView = new DataGridView(); panel1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit(); SuspendLayout(); // // panel1 // panel1.Controls.Add(buttonRemove); panel1.Controls.Add(buttonAdd); panel1.Dock = DockStyle.Right; panel1.Location = new Point(653, 0); panel1.Name = "panel1"; panel1.Size = new Size(147, 450); panel1.TabIndex = 0; // // buttonRemove // buttonRemove.BackgroundImage = Properties.Resources.minus; buttonRemove.BackgroundImageLayout = ImageLayout.Stretch; buttonRemove.Location = new Point(33, 165); buttonRemove.Name = "buttonRemove"; buttonRemove.Size = new Size(89, 83); buttonRemove.TabIndex = 1; buttonRemove.UseVisualStyleBackColor = true; buttonRemove.Click += ButtonRemove_Click; // // buttonAdd // buttonAdd.BackgroundImage = Properties.Resources.plus; buttonAdd.BackgroundImageLayout = ImageLayout.Stretch; buttonAdd.Location = new Point(33, 41); buttonAdd.Name = "buttonAdd"; buttonAdd.Size = new Size(89, 83); buttonAdd.TabIndex = 0; buttonAdd.UseVisualStyleBackColor = true; 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(653, 450); dataGridView.TabIndex = 1; // // FormFlights // AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(800, 450); Controls.Add(dataGridView); Controls.Add(panel1); Name = "FormFlights"; StartPosition = FormStartPosition.CenterParent; Text = "Рейсы"; Load += FormFlights_Load; panel1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)dataGridView).EndInit(); ResumeLayout(false); } #endregion private Panel panel1; private Button buttonRemove; private Button buttonAdd; private DataGridView dataGridView; } }