96 lines
3.5 KiB
C#
96 lines
3.5 KiB
C#
namespace GasStation.Forms
|
|
{
|
|
partial class FormSellings
|
|
{
|
|
/// <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();
|
|
dataGridViewData = new DataGridView();
|
|
panel1.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)dataGridViewData).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// panel1
|
|
//
|
|
panel1.Controls.Add(buttonAdd);
|
|
panel1.Dock = DockStyle.Right;
|
|
panel1.Location = new Point(657, 0);
|
|
panel1.Name = "panel1";
|
|
panel1.Size = new Size(143, 450);
|
|
panel1.TabIndex = 2;
|
|
//
|
|
// buttonAdd
|
|
//
|
|
buttonAdd.Location = new Point(35, 166);
|
|
buttonAdd.Name = "buttonAdd";
|
|
buttonAdd.Size = new Size(75, 73);
|
|
buttonAdd.TabIndex = 1;
|
|
buttonAdd.Text = "Добавить";
|
|
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(657, 450);
|
|
dataGridViewData.TabIndex = 3;
|
|
//
|
|
// FormSellings
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(800, 450);
|
|
Controls.Add(dataGridViewData);
|
|
Controls.Add(panel1);
|
|
Name = "FormSellings";
|
|
Text = "Продажи";
|
|
Load += FormSellings_Load;
|
|
panel1.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)dataGridViewData).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Panel panel1;
|
|
private Button buttonAdd;
|
|
private DataGridView dataGridViewData;
|
|
}
|
|
} |