126 lines
4.9 KiB
C#
126 lines
4.9 KiB
C#
|
namespace ProjectAirline.Forms
|
|||
|
{
|
|||
|
partial class FormPassangers
|
|||
|
{
|
|||
|
/// <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();
|
|||
|
buttonUpd = new Button();
|
|||
|
buttonDel = new Button();
|
|||
|
buttonAdd = new Button();
|
|||
|
dataGridViewData = new DataGridView();
|
|||
|
panel.SuspendLayout();
|
|||
|
((System.ComponentModel.ISupportInitialize)dataGridViewData).BeginInit();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// panel
|
|||
|
//
|
|||
|
panel.Controls.Add(buttonUpd);
|
|||
|
panel.Controls.Add(buttonDel);
|
|||
|
panel.Controls.Add(buttonAdd);
|
|||
|
panel.Dock = DockStyle.Right;
|
|||
|
panel.Location = new Point(630, 0);
|
|||
|
panel.Name = "panel";
|
|||
|
panel.Size = new Size(170, 450);
|
|||
|
panel.TabIndex = 0;
|
|||
|
//
|
|||
|
// buttonUpd
|
|||
|
//
|
|||
|
buttonUpd.BackgroundImage = Properties.Resources.Antu_qtdesigner_svg;
|
|||
|
buttonUpd.BackgroundImageLayout = ImageLayout.Stretch;
|
|||
|
buttonUpd.Location = new Point(48, 131);
|
|||
|
buttonUpd.Name = "buttonUpd";
|
|||
|
buttonUpd.Size = new Size(73, 68);
|
|||
|
buttonUpd.TabIndex = 2;
|
|||
|
buttonUpd.UseVisualStyleBackColor = true;
|
|||
|
buttonUpd.Click += ButtonUpd_Click;
|
|||
|
//
|
|||
|
// buttonDel
|
|||
|
//
|
|||
|
buttonDel.BackgroundImage = Properties.Resources.kisspng_computer_icons_download_5b218289889485_4804831415289227615594;
|
|||
|
buttonDel.BackgroundImageLayout = ImageLayout.Stretch;
|
|||
|
buttonDel.Location = new Point(48, 227);
|
|||
|
buttonDel.Name = "buttonDel";
|
|||
|
buttonDel.Size = new Size(73, 68);
|
|||
|
buttonDel.TabIndex = 1;
|
|||
|
buttonDel.UseVisualStyleBackColor = true;
|
|||
|
buttonDel.Click += ButtonDel_Click;
|
|||
|
//
|
|||
|
// buttonAdd
|
|||
|
//
|
|||
|
buttonAdd.BackgroundImage = Properties.Resources.Fairytale_button_add_svg;
|
|||
|
buttonAdd.BackgroundImageLayout = ImageLayout.Stretch;
|
|||
|
buttonAdd.Location = new Point(48, 29);
|
|||
|
buttonAdd.Name = "buttonAdd";
|
|||
|
buttonAdd.Size = new Size(73, 68);
|
|||
|
buttonAdd.TabIndex = 0;
|
|||
|
buttonAdd.UseVisualStyleBackColor = true;
|
|||
|
buttonAdd.Click += ButtonAdd_Click;
|
|||
|
//
|
|||
|
// 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.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
|
|||
|
dataGridViewData.Size = new Size(630, 450);
|
|||
|
dataGridViewData.TabIndex = 1;
|
|||
|
//
|
|||
|
// FormPassangers
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(800, 450);
|
|||
|
Controls.Add(dataGridViewData);
|
|||
|
Controls.Add(panel);
|
|||
|
Name = "FormPassangers";
|
|||
|
StartPosition = FormStartPosition.CenterParent;
|
|||
|
Text = "Пассажиры";
|
|||
|
Load += FormPassangers_Load;
|
|||
|
panel.ResumeLayout(false);
|
|||
|
((System.ComponentModel.ISupportInitialize)dataGridViewData).EndInit();
|
|||
|
ResumeLayout(false);
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private Panel panel;
|
|||
|
private Button buttonUpd;
|
|||
|
private Button buttonDel;
|
|||
|
private Button buttonAdd;
|
|||
|
private DataGridView dataGridViewData;
|
|||
|
}
|
|||
|
}
|