100 lines
3.6 KiB
C#
100 lines
3.6 KiB
C#
namespace ProjectLibrary.Forms
|
|
{
|
|
partial class FOrders
|
|
{
|
|
/// <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()
|
|
{
|
|
dataGridViewOrders = new DataGridView();
|
|
buttonAdd = new Button();
|
|
buttonUpdate = new Button();
|
|
buttonRemove = new Button();
|
|
((System.ComponentModel.ISupportInitialize)dataGridViewOrders).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// dataGridViewOrders
|
|
//
|
|
dataGridViewOrders.AllowUserToAddRows = false;
|
|
dataGridViewOrders.AllowUserToDeleteRows = false;
|
|
dataGridViewOrders.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
dataGridViewOrders.Location = new Point(12, 12);
|
|
dataGridViewOrders.Name = "dataGridViewOrders";
|
|
dataGridViewOrders.ReadOnly = true;
|
|
dataGridViewOrders.RowHeadersWidth = 51;
|
|
dataGridViewOrders.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
|
|
dataGridViewOrders.Size = new Size(600, 300);
|
|
dataGridViewOrders.TabIndex = 4;
|
|
//
|
|
// buttonAdd
|
|
//
|
|
buttonAdd.Location = new Point(12, 332);
|
|
buttonAdd.Name = "buttonAdd";
|
|
buttonAdd.Size = new Size(100, 30);
|
|
buttonAdd.TabIndex = 5;
|
|
buttonAdd.Text = "Добавить";
|
|
buttonAdd.Click += buttonAdd_Click;
|
|
//
|
|
// buttonUpdate
|
|
//
|
|
buttonUpdate.Location = new Point(132, 332);
|
|
buttonUpdate.Name = "buttonUpdate";
|
|
buttonUpdate.Size = new Size(100, 30);
|
|
buttonUpdate.TabIndex = 6;
|
|
buttonUpdate.Text = "Изменить";
|
|
buttonUpdate.Click += buttonUpdate_Click;
|
|
//
|
|
// buttonRemove
|
|
//
|
|
buttonRemove.Location = new Point(252, 332);
|
|
buttonRemove.Name = "buttonRemove";
|
|
buttonRemove.Size = new Size(100, 30);
|
|
buttonRemove.TabIndex = 7;
|
|
buttonRemove.Text = "Удалить";
|
|
buttonRemove.Click += buttonRemove_Click;
|
|
//
|
|
// FOrders
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(630, 412);
|
|
Controls.Add(dataGridViewOrders);
|
|
Controls.Add(buttonAdd);
|
|
Controls.Add(buttonUpdate);
|
|
Controls.Add(buttonRemove);
|
|
Name = "FOrders";
|
|
Text = "FOrders";
|
|
((System.ComponentModel.ISupportInitialize)dataGridViewOrders).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private DataGridView dataGridViewOrders;
|
|
private Button buttonAdd;
|
|
private Button buttonUpdate;
|
|
private Button buttonRemove;
|
|
}
|
|
} |