123 lines
4.7 KiB
C#
123 lines
4.7 KiB
C#
namespace ProjectAirline.Forms
|
|
{
|
|
partial class FormFlights
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
panel = new Panel();
|
|
buttonAdd = new Button();
|
|
buttonDel = new Button();
|
|
buttonUpd = new Button();
|
|
dataGridViewData = new DataGridView();
|
|
panel.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)dataGridViewData).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// panel
|
|
//
|
|
panel.Controls.Add(buttonAdd);
|
|
panel.Controls.Add(buttonDel);
|
|
panel.Controls.Add(buttonUpd);
|
|
panel.Dock = DockStyle.Right;
|
|
panel.Location = new Point(652, 0);
|
|
panel.Name = "panel";
|
|
panel.Size = new Size(148, 450);
|
|
panel.TabIndex = 0;
|
|
//
|
|
// buttonAdd
|
|
//
|
|
buttonAdd.BackgroundImage = Properties.Resources.Fairytale_button_add_svg;
|
|
buttonAdd.BackgroundImageLayout = ImageLayout.Zoom;
|
|
buttonAdd.Location = new Point(43, 44);
|
|
buttonAdd.Name = "buttonAdd";
|
|
buttonAdd.Size = new Size(70, 59);
|
|
buttonAdd.TabIndex = 2;
|
|
buttonAdd.UseVisualStyleBackColor = true;
|
|
buttonAdd.Click += ButtonAdd_Click;
|
|
//
|
|
// buttonDel
|
|
//
|
|
buttonDel.BackgroundImage = Properties.Resources.kisspng_computer_icons_download_5b218289889485_4804831415289227615594;
|
|
buttonDel.BackgroundImageLayout = ImageLayout.Stretch;
|
|
buttonDel.Location = new Point(43, 244);
|
|
buttonDel.Name = "buttonDel";
|
|
buttonDel.Size = new Size(70, 59);
|
|
buttonDel.TabIndex = 1;
|
|
buttonDel.UseVisualStyleBackColor = true;
|
|
//
|
|
// buttonUpd
|
|
//
|
|
buttonUpd.BackgroundImage = Properties.Resources.Antu_qtdesigner_svg;
|
|
buttonUpd.BackgroundImageLayout = ImageLayout.Zoom;
|
|
buttonUpd.Location = new Point(43, 137);
|
|
buttonUpd.Name = "buttonUpd";
|
|
buttonUpd.Size = new Size(70, 59);
|
|
buttonUpd.TabIndex = 0;
|
|
buttonUpd.UseVisualStyleBackColor = true;
|
|
//
|
|
// dataGridViewData
|
|
//
|
|
dataGridViewData.AllowUserToAddRows = false;
|
|
dataGridViewData.AllowUserToDeleteRows = false;
|
|
dataGridViewData.AllowUserToResizeColumns = false;
|
|
dataGridViewData.AllowUserToResizeRows = false;
|
|
dataGridViewData.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
|
|
dataGridViewData.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
dataGridViewData.Dock = DockStyle.Fill;
|
|
dataGridViewData.Location = new Point(0, 0);
|
|
dataGridViewData.MultiSelect = false;
|
|
dataGridViewData.Name = "dataGridViewData";
|
|
dataGridViewData.ReadOnly = true;
|
|
dataGridViewData.RowHeadersVisible = false;
|
|
dataGridViewData.Size = new Size(652, 450);
|
|
dataGridViewData.TabIndex = 1;
|
|
//
|
|
// FormFlights
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(800, 450);
|
|
Controls.Add(dataGridViewData);
|
|
Controls.Add(panel);
|
|
Name = "FormFlights";
|
|
StartPosition = FormStartPosition.CenterParent;
|
|
Text = "Полеты";
|
|
Load += FormFlights_Load;
|
|
panel.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)dataGridViewData).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Panel panel;
|
|
private Button buttonUpd;
|
|
private Button buttonAdd;
|
|
private Button buttonDel;
|
|
private DataGridView dataGridViewData;
|
|
}
|
|
} |