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(); labelClient = new Label(); comboBoxClient = new ComboBox(); SuspendLayout(); // // buttonSave // buttonSave.Location = new Point(242, 223); 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(351, 223); 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(39, 79); labelTextile.Name = "labelTextile"; labelTextile.Size = new Size(73, 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(39, 122); 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(39, 166); labelSum.Name = "labelSum"; labelSum.Size = new Size(58, 20); labelSum.TabIndex = 4; labelSum.Text = "Сумма:"; // // textBoxCount // textBoxCount.Location = new Point(138, 122); textBoxCount.Name = "textBoxCount"; textBoxCount.Size = new Size(247, 27); textBoxCount.TabIndex = 5; textBoxCount.TextChanged += TextBoxCount_TextChanged; // // textBoxSum // textBoxSum.Enabled = false; textBoxSum.Location = new Point(138, 166); textBoxSum.Name = "textBoxSum"; textBoxSum.Size = new Size(247, 27); textBoxSum.TabIndex = 6; // // comboBoxTextile // comboBoxTextile.FormattingEnabled = true; comboBoxTextile.Location = new Point(138, 79); comboBoxTextile.Name = "comboBoxTextile"; comboBoxTextile.Size = new Size(247, 28); comboBoxTextile.TabIndex = 7; comboBoxTextile.SelectedIndexChanged += ComboBoxProduct_SelectedIndexChanged; // // labelClient // labelClient.AutoSize = true; labelClient.Font = new Font("Segoe UI", 9F, FontStyle.Regular, GraphicsUnit.Point); labelClient.Location = new Point(39, 36); labelClient.Name = "labelClient"; labelClient.Size = new Size(61, 20); labelClient.TabIndex = 8; labelClient.Text = "Клиент:"; // // comboBoxClient // comboBoxClient.FormattingEnabled = true; comboBoxClient.Location = new Point(138, 33); comboBoxClient.Name = "comboBoxClient"; comboBoxClient.Size = new Size(247, 28); comboBoxClient.TabIndex = 9; // // FormCreateOrder // AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(453, 281); Controls.Add(comboBoxClient); Controls.Add(labelClient); 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; private Label labelClient; private ComboBox comboBoxClient; } }