120 lines
5.0 KiB
C#
120 lines
5.0 KiB
C#
namespace LawFirmView
|
|
{
|
|
partial class FormSellDocuments
|
|
{
|
|
/// <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.ButtonCancel = new System.Windows.Forms.Button();
|
|
this.comboBoxDocuments = new System.Windows.Forms.ComboBox();
|
|
this.numericUpDownCount = new System.Windows.Forms.NumericUpDown();
|
|
this.labelDocument = new System.Windows.Forms.Label();
|
|
this.labelCount = new System.Windows.Forms.Label();
|
|
this.ButtonSave = new System.Windows.Forms.Button();
|
|
((System.ComponentModel.ISupportInitialize)(this.numericUpDownCount)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// ButtonCancel
|
|
//
|
|
this.ButtonCancel.Location = new System.Drawing.Point(266, 153);
|
|
this.ButtonCancel.Name = "ButtonCancel";
|
|
this.ButtonCancel.Size = new System.Drawing.Size(94, 29);
|
|
this.ButtonCancel.TabIndex = 1;
|
|
this.ButtonCancel.Text = "Отмена";
|
|
this.ButtonCancel.UseVisualStyleBackColor = true;
|
|
this.ButtonCancel.Click += new System.EventHandler(this.ButtonCancel_Click);
|
|
//
|
|
// comboBoxDocuments
|
|
//
|
|
this.comboBoxDocuments.FormattingEnabled = true;
|
|
this.comboBoxDocuments.Location = new System.Drawing.Point(144, 38);
|
|
this.comboBoxDocuments.Name = "comboBoxDocuments";
|
|
this.comboBoxDocuments.Size = new System.Drawing.Size(216, 28);
|
|
this.comboBoxDocuments.TabIndex = 2;
|
|
//
|
|
// numericUpDownCount
|
|
//
|
|
this.numericUpDownCount.Location = new System.Drawing.Point(144, 102);
|
|
this.numericUpDownCount.Name = "numericUpDownCount";
|
|
this.numericUpDownCount.Size = new System.Drawing.Size(216, 27);
|
|
this.numericUpDownCount.TabIndex = 3;
|
|
//
|
|
// labelDocument
|
|
//
|
|
this.labelDocument.AutoSize = true;
|
|
this.labelDocument.Location = new System.Drawing.Point(34, 38);
|
|
this.labelDocument.Name = "labelDocument";
|
|
this.labelDocument.Size = new System.Drawing.Size(69, 20);
|
|
this.labelDocument.TabIndex = 4;
|
|
this.labelDocument.Text = "Документ";
|
|
//
|
|
// labelCount
|
|
//
|
|
this.labelCount.AutoSize = true;
|
|
this.labelCount.Location = new System.Drawing.Point(34, 109);
|
|
this.labelCount.Name = "labelCount";
|
|
this.labelCount.Size = new System.Drawing.Size(90, 20);
|
|
this.labelCount.TabIndex = 5;
|
|
this.labelCount.Text = "Количество";
|
|
//
|
|
// ButtonSave
|
|
//
|
|
this.ButtonSave.Location = new System.Drawing.Point(144, 153);
|
|
this.ButtonSave.Name = "ButtonSave";
|
|
this.ButtonSave.Size = new System.Drawing.Size(94, 29);
|
|
this.ButtonSave.TabIndex = 6;
|
|
this.ButtonSave.Text = "Сохранить";
|
|
this.ButtonSave.UseVisualStyleBackColor = true;
|
|
this.ButtonSave.Click += new System.EventHandler(this.ButtonSave_Click);
|
|
//
|
|
// FormSellDocuments
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(373, 194);
|
|
this.Controls.Add(this.ButtonSave);
|
|
this.Controls.Add(this.labelCount);
|
|
this.Controls.Add(this.labelDocument);
|
|
this.Controls.Add(this.numericUpDownCount);
|
|
this.Controls.Add(this.comboBoxDocuments);
|
|
this.Controls.Add(this.ButtonCancel);
|
|
this.Name = "FormSellDocuments";
|
|
this.Text = "Продажа документов";
|
|
((System.ComponentModel.ISupportInitialize)(this.numericUpDownCount)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
private Button ButtonCancel;
|
|
private ComboBox comboBoxDocuments;
|
|
private NumericUpDown numericUpDownCount;
|
|
private Label labelDocument;
|
|
private Label labelCount;
|
|
private Button ButtonSave;
|
|
}
|
|
} |