101 lines
3.8 KiB
C#
101 lines
3.8 KiB
C#
namespace TradeAndProcurementEnterprice.Forms
|
|
{
|
|
partial class FormContracts
|
|
{
|
|
/// <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(644, 0);
|
|
panel1.Name = "panel1";
|
|
panel1.Size = new Size(96, 435);
|
|
panel1.TabIndex = 0;
|
|
//
|
|
// buttonAdd
|
|
//
|
|
buttonAdd.BackgroundImage = Properties.Resources.add;
|
|
buttonAdd.BackgroundImageLayout = ImageLayout.Stretch;
|
|
buttonAdd.Location = new Point(17, 12);
|
|
buttonAdd.Name = "buttonAdd";
|
|
buttonAdd.Size = new Size(65, 65);
|
|
buttonAdd.TabIndex = 1;
|
|
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.RowHeadersWidth = 82;
|
|
dataGridViewData.RowTemplate.Height = 25;
|
|
dataGridViewData.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
|
|
dataGridViewData.Size = new Size(644, 435);
|
|
dataGridViewData.TabIndex = 1;
|
|
//
|
|
// FormContracts
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(740, 435);
|
|
Controls.Add(dataGridViewData);
|
|
Controls.Add(panel1);
|
|
MinimumSize = new Size(546, 316);
|
|
Name = "FormContracts";
|
|
StartPosition = FormStartPosition.CenterParent;
|
|
Text = "Продажи";
|
|
Load += FormContracts_Load;
|
|
panel1.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)dataGridViewData).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Panel panel1;
|
|
private Button buttonAdd;
|
|
private DataGridView dataGridViewData;
|
|
}
|
|
} |