204 lines
8.6 KiB
C#
204 lines
8.6 KiB
C#
namespace LawFirmView
|
|
{
|
|
partial class FormShop
|
|
{
|
|
/// <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()
|
|
{
|
|
this.textBoxName = new System.Windows.Forms.TextBox();
|
|
this.textBoxAddress = new System.Windows.Forms.TextBox();
|
|
this.dateTimePicker = new System.Windows.Forms.DateTimePicker();
|
|
this.dataGridView = new System.Windows.Forms.DataGridView();
|
|
this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.buttonSave = new System.Windows.Forms.Button();
|
|
this.buttonCancel = new System.Windows.Forms.Button();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
this.textBoxMaxCountDoc = new System.Windows.Forms.TextBox();
|
|
this.label4 = new System.Windows.Forms.Label();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// textBoxName
|
|
//
|
|
this.textBoxName.Location = new System.Drawing.Point(274, 15);
|
|
this.textBoxName.Name = "textBoxName";
|
|
this.textBoxName.Size = new System.Drawing.Size(200, 23);
|
|
this.textBoxName.TabIndex = 0;
|
|
//
|
|
// textBoxAddress
|
|
//
|
|
this.textBoxAddress.Location = new System.Drawing.Point(274, 41);
|
|
this.textBoxAddress.Name = "textBoxAddress";
|
|
this.textBoxAddress.Size = new System.Drawing.Size(200, 23);
|
|
this.textBoxAddress.TabIndex = 1;
|
|
//
|
|
// dateTimePicker
|
|
//
|
|
this.dateTimePicker.Location = new System.Drawing.Point(274, 102);
|
|
this.dateTimePicker.Name = "dateTimePicker";
|
|
this.dateTimePicker.Size = new System.Drawing.Size(200, 23);
|
|
this.dateTimePicker.TabIndex = 2;
|
|
//
|
|
// dataGridView
|
|
//
|
|
this.dataGridView.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
|
|
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.Column1,
|
|
this.Column2,
|
|
this.Column3});
|
|
this.dataGridView.Location = new System.Drawing.Point(12, 155);
|
|
this.dataGridView.Name = "dataGridView";
|
|
this.dataGridView.RowTemplate.Height = 25;
|
|
this.dataGridView.Size = new System.Drawing.Size(536, 245);
|
|
this.dataGridView.TabIndex = 3;
|
|
//
|
|
// Column1
|
|
//
|
|
this.Column1.HeaderText = "id";
|
|
this.Column1.Name = "Column1";
|
|
this.Column1.Visible = false;
|
|
//
|
|
// Column2
|
|
//
|
|
this.Column2.HeaderText = "Название пакета документов";
|
|
this.Column2.Name = "Column2";
|
|
//
|
|
// Column3
|
|
//
|
|
this.Column3.HeaderText = "Количество";
|
|
this.Column3.Name = "Column3";
|
|
//
|
|
// buttonSave
|
|
//
|
|
this.buttonSave.Location = new System.Drawing.Point(346, 406);
|
|
this.buttonSave.Name = "buttonSave";
|
|
this.buttonSave.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonSave.TabIndex = 4;
|
|
this.buttonSave.Text = "Сохранить";
|
|
this.buttonSave.UseVisualStyleBackColor = true;
|
|
this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click);
|
|
//
|
|
// buttonCancel
|
|
//
|
|
this.buttonCancel.Location = new System.Drawing.Point(445, 406);
|
|
this.buttonCancel.Name = "buttonCancel";
|
|
this.buttonCancel.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonCancel.TabIndex = 5;
|
|
this.buttonCancel.Text = "Отмена";
|
|
this.buttonCancel.UseVisualStyleBackColor = true;
|
|
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(206, 18);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(62, 15);
|
|
this.label1.TabIndex = 6;
|
|
this.label1.Text = "Название:";
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(225, 44);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(43, 15);
|
|
this.label2.TabIndex = 7;
|
|
this.label2.Text = "Адрес:";
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.AutoSize = true;
|
|
this.label3.Location = new System.Drawing.Point(178, 108);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(90, 15);
|
|
this.label3.TabIndex = 8;
|
|
this.label3.Text = "Дата открытия:";
|
|
//
|
|
// textBoxMaxCountDoc
|
|
//
|
|
this.textBoxMaxCountDoc.Location = new System.Drawing.Point(274, 73);
|
|
this.textBoxMaxCountDoc.Name = "textBoxMaxCountDoc";
|
|
this.textBoxMaxCountDoc.Size = new System.Drawing.Size(200, 23);
|
|
this.textBoxMaxCountDoc.TabIndex = 9;
|
|
//
|
|
// label4
|
|
//
|
|
this.label4.AutoSize = true;
|
|
this.label4.Location = new System.Drawing.Point(42, 73);
|
|
this.label4.Name = "label4";
|
|
this.label4.Size = new System.Drawing.Size(229, 15);
|
|
this.label4.TabIndex = 10;
|
|
this.label4.Text = "Максимальное количество документов:";
|
|
//
|
|
// FormShop
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(649, 459);
|
|
this.Controls.Add(this.label4);
|
|
this.Controls.Add(this.textBoxMaxCountDoc);
|
|
this.Controls.Add(this.label3);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.buttonCancel);
|
|
this.Controls.Add(this.buttonSave);
|
|
this.Controls.Add(this.dataGridView);
|
|
this.Controls.Add(this.dateTimePicker);
|
|
this.Controls.Add(this.textBoxAddress);
|
|
this.Controls.Add(this.textBoxName);
|
|
this.Name = "FormShop";
|
|
this.Text = "FormShop";
|
|
this.Load += new System.EventHandler(this.FormShop_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private TextBox textBoxName;
|
|
private TextBox textBoxAddress;
|
|
private DateTimePicker dateTimePicker;
|
|
private DataGridView dataGridView;
|
|
private Button buttonSave;
|
|
private Button buttonCancel;
|
|
private Label label1;
|
|
private Label label2;
|
|
private Label label3;
|
|
private DataGridViewTextBoxColumn Column1;
|
|
private DataGridViewTextBoxColumn Column2;
|
|
private DataGridViewTextBoxColumn Column3;
|
|
private TextBox textBoxMaxCountDoc;
|
|
private Label label4;
|
|
}
|
|
} |