100 lines
3.8 KiB
C#
100 lines
3.8 KiB
C#
|
namespace ProjectFuel.Forms_
|
|||
|
{
|
|||
|
partial class FormTrips
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
panel1 = new Panel();
|
|||
|
buttonAdd = new Button();
|
|||
|
dataGridViewTrips = new DataGridView();
|
|||
|
panel1.SuspendLayout();
|
|||
|
((System.ComponentModel.ISupportInitialize)dataGridViewTrips).BeginInit();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// panel1
|
|||
|
//
|
|||
|
panel1.Controls.Add(buttonAdd);
|
|||
|
panel1.Dock = DockStyle.Right;
|
|||
|
panel1.Location = new Point(545, 0);
|
|||
|
panel1.Name = "panel1";
|
|||
|
panel1.Size = new Size(255, 450);
|
|||
|
panel1.TabIndex = 0;
|
|||
|
//
|
|||
|
// buttonAdd
|
|||
|
//
|
|||
|
buttonAdd.BackgroundImage = Properties.Resources._;
|
|||
|
buttonAdd.BackgroundImageLayout = ImageLayout.Stretch;
|
|||
|
buttonAdd.Location = new Point(45, 42);
|
|||
|
buttonAdd.Name = "buttonAdd";
|
|||
|
buttonAdd.Size = new Size(151, 131);
|
|||
|
buttonAdd.TabIndex = 8;
|
|||
|
buttonAdd.UseVisualStyleBackColor = true;
|
|||
|
buttonAdd.Click += ButtonAdd_Click;
|
|||
|
//
|
|||
|
// dataGridViewTrips
|
|||
|
//
|
|||
|
dataGridViewTrips.AllowUserToAddRows = false;
|
|||
|
dataGridViewTrips.AllowUserToDeleteRows = false;
|
|||
|
dataGridViewTrips.AllowUserToResizeColumns = false;
|
|||
|
dataGridViewTrips.AllowUserToResizeRows = false;
|
|||
|
dataGridViewTrips.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
|
|||
|
dataGridViewTrips.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|||
|
dataGridViewTrips.Dock = DockStyle.Fill;
|
|||
|
dataGridViewTrips.Location = new Point(0, 0);
|
|||
|
dataGridViewTrips.MultiSelect = false;
|
|||
|
dataGridViewTrips.Name = "dataGridViewTrips";
|
|||
|
dataGridViewTrips.ReadOnly = true;
|
|||
|
dataGridViewTrips.RowHeadersVisible = false;
|
|||
|
dataGridViewTrips.RowHeadersWidth = 82;
|
|||
|
dataGridViewTrips.RowTemplate.Height = 41;
|
|||
|
dataGridViewTrips.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
|
|||
|
dataGridViewTrips.Size = new Size(545, 450);
|
|||
|
dataGridViewTrips.TabIndex = 1;
|
|||
|
//
|
|||
|
// FormTrips
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(13F, 32F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(800, 450);
|
|||
|
Controls.Add(dataGridViewTrips);
|
|||
|
Controls.Add(panel1);
|
|||
|
Name = "FormTrips";
|
|||
|
StartPosition = FormStartPosition.CenterParent;
|
|||
|
Text = " Поездки";
|
|||
|
Load += FormTrips_Load;
|
|||
|
panel1.ResumeLayout(false);
|
|||
|
((System.ComponentModel.ISupportInitialize)dataGridViewTrips).EndInit();
|
|||
|
ResumeLayout(false);
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private Panel panel1;
|
|||
|
private DataGridView dataGridViewTrips;
|
|||
|
private Button buttonAdd;
|
|||
|
}
|
|||
|
}
|