namespace LawFirmView { partial class FormCreateOrder { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.labelDocument = new System.Windows.Forms.Label(); this.labelCount = new System.Windows.Forms.Label(); this.labelSum = new System.Windows.Forms.Label(); this.comboBoxDocument = new System.Windows.Forms.ComboBox(); this.textBoxCount = new System.Windows.Forms.TextBox(); this.textBoxSum = new System.Windows.Forms.TextBox(); this.buttonCancel = new System.Windows.Forms.Button(); this.buttonSave = new System.Windows.Forms.Button(); this.comboBoxClient = new System.Windows.Forms.ComboBox(); this.labelClient = new System.Windows.Forms.Label(); this.SuspendLayout(); // // labelDocument // this.labelDocument.AutoSize = true; this.labelDocument.Location = new System.Drawing.Point(12, 9); this.labelDocument.Name = "labelDocument"; this.labelDocument.Size = new System.Drawing.Size(64, 15); this.labelDocument.TabIndex = 0; this.labelDocument.Text = "Документ:"; // // labelCount // this.labelCount.AutoSize = true; this.labelCount.Location = new System.Drawing.Point(12, 38); this.labelCount.Name = "labelCount"; this.labelCount.Size = new System.Drawing.Size(75, 15); this.labelCount.TabIndex = 1; this.labelCount.Text = "Количество:"; // // labelSum // this.labelSum.AutoSize = true; this.labelSum.Location = new System.Drawing.Point(12, 67); this.labelSum.Name = "labelSum"; this.labelSum.Size = new System.Drawing.Size(48, 15); this.labelSum.TabIndex = 2; this.labelSum.Text = "Сумма:"; // // comboBoxDocument // this.comboBoxDocument.FormattingEnabled = true; this.comboBoxDocument.Location = new System.Drawing.Point(95, 6); this.comboBoxDocument.Name = "comboBoxDocument"; this.comboBoxDocument.Size = new System.Drawing.Size(196, 23); this.comboBoxDocument.TabIndex = 3; this.comboBoxDocument.SelectedIndexChanged += new System.EventHandler(this.ComboBoxDocument_SelectedIndexChanged); // // textBoxCount // this.textBoxCount.Location = new System.Drawing.Point(95, 35); this.textBoxCount.Name = "textBoxCount"; this.textBoxCount.Size = new System.Drawing.Size(196, 23); this.textBoxCount.TabIndex = 4; this.textBoxCount.TextChanged += new System.EventHandler(this.TextBoxCount_TextChanged); // // textBoxSum // this.textBoxSum.Enabled = false; this.textBoxSum.Location = new System.Drawing.Point(95, 64); this.textBoxSum.Name = "textBoxSum"; this.textBoxSum.ReadOnly = true; this.textBoxSum.Size = new System.Drawing.Size(196, 23); this.textBoxSum.TabIndex = 5; // // buttonCancel // this.buttonCancel.Location = new System.Drawing.Point(216, 122); this.buttonCancel.Name = "buttonCancel"; this.buttonCancel.Size = new System.Drawing.Size(75, 23); this.buttonCancel.TabIndex = 6; this.buttonCancel.Text = "Отмена"; this.buttonCancel.UseVisualStyleBackColor = true; this.buttonCancel.Click += new System.EventHandler(this.ButtonCancel_Click); // // buttonSave // this.buttonSave.Location = new System.Drawing.Point(135, 122); this.buttonSave.Name = "buttonSave"; this.buttonSave.Size = new System.Drawing.Size(75, 23); this.buttonSave.TabIndex = 7; this.buttonSave.Text = "Сохранить"; this.buttonSave.UseVisualStyleBackColor = true; this.buttonSave.Click += new System.EventHandler(this.ButtonSave_Click); // // comboBoxClient // this.comboBoxClient.FormattingEnabled = true; this.comboBoxClient.Location = new System.Drawing.Point(95, 93); this.comboBoxClient.Name = "comboBoxClient"; this.comboBoxClient.Size = new System.Drawing.Size(196, 23); this.comboBoxClient.TabIndex = 9; // // labelClient // this.labelClient.AutoSize = true; this.labelClient.Location = new System.Drawing.Point(12, 96); this.labelClient.Name = "labelClient"; this.labelClient.Size = new System.Drawing.Size(49, 15); this.labelClient.TabIndex = 8; this.labelClient.Text = "Клиент:"; // // FormCreateOrder // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(304, 149); this.Controls.Add(this.comboBoxClient); this.Controls.Add(this.labelClient); this.Controls.Add(this.buttonSave); this.Controls.Add(this.buttonCancel); this.Controls.Add(this.textBoxSum); this.Controls.Add(this.textBoxCount); this.Controls.Add(this.comboBoxDocument); this.Controls.Add(this.labelSum); this.Controls.Add(this.labelCount); this.Controls.Add(this.labelDocument); this.Name = "FormCreateOrder"; this.Text = "Заказ"; this.Load += new System.EventHandler(this.FormCreateOrder_Load); this.ResumeLayout(false); this.PerformLayout(); } #endregion private Label labelDocument; private Label labelCount; private Label labelSum; private ComboBox comboBoxDocument; private TextBox textBoxCount; private TextBox textBoxSum; private Button buttonCancel; private Button buttonSave; private ComboBox comboBoxClient; private Label labelClient; } }