namespace GarmentFactoryView { 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() { buttonSave = new Button(); buttonCancel = new Button(); labelTextile = new Label(); labelCount = new Label(); labelSum = new Label(); textBoxCount = new TextBox(); textBoxSum = new TextBox(); comboBoxTextile = new ComboBox(); SuspendLayout(); // // buttonSave // buttonSave.Location = new Point(238, 168); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(94, 29); buttonSave.TabIndex = 0; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += ButtonSave_Click; // // buttonCancel // buttonCancel.Location = new Point(347, 168); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(94, 29); buttonCancel.TabIndex = 1; buttonCancel.Text = "Отменить"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += ButtonCancel_Click; // // labelTextile // labelTextile.AutoSize = true; labelTextile.Font = new Font("Segoe UI", 9F, FontStyle.Regular, GraphicsUnit.Point); labelTextile.Location = new Point(35, 24); labelTextile.Name = "labelTextile"; labelTextile.Size = new Size(71, 20); labelTextile.TabIndex = 2; labelTextile.Text = "Текстиль:"; // // labelCount // labelCount.AutoSize = true; labelCount.Font = new Font("Segoe UI", 9F, FontStyle.Regular, GraphicsUnit.Point); labelCount.Location = new Point(35, 67); labelCount.Name = "labelCount"; labelCount.Size = new Size(93, 20); labelCount.TabIndex = 3; labelCount.Text = "Количество:"; // // labelSum // labelSum.AutoSize = true; labelSum.Font = new Font("Segoe UI", 9F, FontStyle.Regular, GraphicsUnit.Point); labelSum.Location = new Point(35, 111); labelSum.Name = "labelSum"; labelSum.Size = new Size(58, 20); labelSum.TabIndex = 4; labelSum.Text = "Сумма:"; // // textBoxCount // textBoxCount.Location = new Point(134, 67); textBoxCount.Name = "textBoxCount"; textBoxCount.Size = new Size(247, 27); textBoxCount.TabIndex = 5; textBoxCount.TextChanged += TextBoxCount_TextChanged; // // textBoxSum // textBoxSum.Enabled = false; textBoxSum.Location = new Point(134, 111); textBoxSum.Name = "textBoxSum"; textBoxSum.Size = new Size(247, 27); textBoxSum.TabIndex = 6; // // comboBoxTextile // comboBoxTextile.FormattingEnabled = true; comboBoxTextile.Location = new Point(134, 24); comboBoxTextile.Name = "comboBoxTextile"; comboBoxTextile.Size = new Size(247, 28); comboBoxTextile.TabIndex = 7; comboBoxTextile.SelectedIndexChanged += ComboBoxProduct_SelectedIndexChanged; // // FormCreateOrder // AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(453, 209); Controls.Add(comboBoxTextile); Controls.Add(textBoxSum); Controls.Add(textBoxCount); Controls.Add(labelSum); Controls.Add(labelCount); Controls.Add(labelTextile); Controls.Add(buttonCancel); Controls.Add(buttonSave); Name = "FormCreateOrder"; Text = "Заказ"; Load += FormCreateOrder_Load; ResumeLayout(false); PerformLayout(); } #endregion private Button buttonSave; private Button buttonCancel; private Label labelTextile; private Label labelCount; private Label labelSum; private TextBox textBoxCount; private TextBox textBoxSum; private ComboBox comboBoxTextile; } }