namespace FishFactory.Forms { 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() { label1 = new Label(); label2 = new Label(); label3 = new Label(); textBoxCount = new TextBox(); comboBoxCanned = new ComboBox(); textBoxSum = new TextBox(); buttonSave = new Button(); buttonCancel = new Button(); SuspendLayout(); // // label1 // label1.AutoSize = true; label1.Location = new Point(22, 16); label1.Name = "label1"; label1.Size = new Size(71, 20); label1.TabIndex = 0; label1.Text = "Изделие:"; // // label2 // label2.AutoSize = true; label2.Location = new Point(22, 58); label2.Name = "label2"; label2.Size = new Size(93, 20); label2.TabIndex = 1; label2.Text = "Количество:"; // // label3 // label3.AutoSize = true; label3.Location = new Point(22, 94); label3.Name = "label3"; label3.Size = new Size(58, 20); label3.TabIndex = 2; label3.Text = "Сумма:"; // // textBoxCount // textBoxCount.Location = new Point(118, 55); textBoxCount.Margin = new Padding(3, 4, 3, 4); textBoxCount.Name = "textBoxCount"; textBoxCount.Size = new Size(280, 27); textBoxCount.TabIndex = 3; textBoxCount.TextChanged += textBoxCount_TextChanged; // // comboBoxCanned // comboBoxCanned.FormattingEnabled = true; comboBoxCanned.Location = new Point(118, 14); comboBoxCanned.Margin = new Padding(3, 4, 3, 4); comboBoxCanned.Name = "comboBoxCanned"; comboBoxCanned.Size = new Size(280, 28); comboBoxCanned.TabIndex = 4; comboBoxCanned.SelectedIndexChanged += ComboBoxCanned_SelectedIndexChanged; // // textBoxSum // textBoxSum.Location = new Point(118, 94); textBoxSum.Margin = new Padding(3, 4, 3, 4); textBoxSum.Name = "textBoxSum"; textBoxSum.ReadOnly = true; textBoxSum.Size = new Size(280, 27); textBoxSum.TabIndex = 5; // // buttonSave // buttonSave.Location = new Point(172, 135); buttonSave.Margin = new Padding(3, 4, 3, 4); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(107, 35); buttonSave.TabIndex = 6; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += buttonSave_Click; // // buttonCancel // buttonCancel.Location = new Point(285, 135); buttonCancel.Margin = new Padding(3, 4, 3, 4); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(107, 35); buttonCancel.TabIndex = 7; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += buttonCancel_Click; // // FormCreateOrder // AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(428, 182); Controls.Add(buttonCancel); Controls.Add(buttonSave); Controls.Add(textBoxSum); Controls.Add(comboBoxCanned); Controls.Add(textBoxCount); Controls.Add(label3); Controls.Add(label2); Controls.Add(label1); Margin = new Padding(3, 4, 3, 4); Name = "FormCreateOrder"; Text = "Заказ"; Load += new System.EventHandler(this.FormCreateOrder_Load); ResumeLayout(false); PerformLayout(); } #endregion private Label label1; private Label label2; private Label label3; private TextBox textBoxCount; private ComboBox comboBoxCanned; private TextBox textBoxSum; private Button buttonSave; private Button buttonCancel; } }