119 lines
4.7 KiB
C#
119 lines
4.7 KiB
C#
namespace LawFirmView
|
|
{
|
|
partial class FormDocumentBlank
|
|
{
|
|
/// <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.labelBlank = new System.Windows.Forms.Label();
|
|
this.labelCount = new System.Windows.Forms.Label();
|
|
this.comboBoxBlank = new System.Windows.Forms.ComboBox();
|
|
this.textBoxCount = new System.Windows.Forms.TextBox();
|
|
this.labelCancel = new System.Windows.Forms.Button();
|
|
this.labelSave = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// labelBlank
|
|
//
|
|
this.labelBlank.AutoSize = true;
|
|
this.labelBlank.Location = new System.Drawing.Point(12, 9);
|
|
this.labelBlank.Name = "labelBlank";
|
|
this.labelBlank.Size = new System.Drawing.Size(43, 15);
|
|
this.labelBlank.TabIndex = 0;
|
|
this.labelBlank.Text = "Бланк:";
|
|
//
|
|
// labelCount
|
|
//
|
|
this.labelCount.AutoSize = true;
|
|
this.labelCount.Location = new System.Drawing.Point(12, 43);
|
|
this.labelCount.Name = "labelCount";
|
|
this.labelCount.Size = new System.Drawing.Size(75, 15);
|
|
this.labelCount.TabIndex = 1;
|
|
this.labelCount.Text = "Количество:";
|
|
//
|
|
// comboBoxBlank
|
|
//
|
|
this.comboBoxBlank.FormattingEnabled = true;
|
|
this.comboBoxBlank.Location = new System.Drawing.Point(93, 6);
|
|
this.comboBoxBlank.Name = "comboBoxBlank";
|
|
this.comboBoxBlank.Size = new System.Drawing.Size(223, 23);
|
|
this.comboBoxBlank.TabIndex = 2;
|
|
//
|
|
// textBoxCount
|
|
//
|
|
this.textBoxCount.Location = new System.Drawing.Point(93, 40);
|
|
this.textBoxCount.Name = "textBoxCount";
|
|
this.textBoxCount.Size = new System.Drawing.Size(223, 23);
|
|
this.textBoxCount.TabIndex = 3;
|
|
//
|
|
// labelCancel
|
|
//
|
|
this.labelCancel.Location = new System.Drawing.Point(241, 69);
|
|
this.labelCancel.Name = "labelCancel";
|
|
this.labelCancel.Size = new System.Drawing.Size(75, 23);
|
|
this.labelCancel.TabIndex = 4;
|
|
this.labelCancel.Text = "Отмена";
|
|
this.labelCancel.UseVisualStyleBackColor = true;
|
|
this.labelCancel.Click += new System.EventHandler(this.ButtonCancel_Click);
|
|
//
|
|
// labelSave
|
|
//
|
|
this.labelSave.Location = new System.Drawing.Point(160, 69);
|
|
this.labelSave.Name = "labelSave";
|
|
this.labelSave.Size = new System.Drawing.Size(75, 23);
|
|
this.labelSave.TabIndex = 5;
|
|
this.labelSave.Text = "Сохранить";
|
|
this.labelSave.UseVisualStyleBackColor = true;
|
|
this.labelSave.Click += new System.EventHandler(this.ButtonSave_Click);
|
|
//
|
|
// FormDocumentBlank
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(330, 100);
|
|
this.Controls.Add(this.labelSave);
|
|
this.Controls.Add(this.labelCancel);
|
|
this.Controls.Add(this.textBoxCount);
|
|
this.Controls.Add(this.comboBoxBlank);
|
|
this.Controls.Add(this.labelCount);
|
|
this.Controls.Add(this.labelBlank);
|
|
this.Name = "FormDocumentBlank";
|
|
this.Text = "Компонент изделия";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label labelBlank;
|
|
private Label labelCount;
|
|
private ComboBox comboBoxBlank;
|
|
private TextBox textBoxCount;
|
|
private Button labelCancel;
|
|
private Button labelSave;
|
|
}
|
|
} |