namespace ComputersShopView { 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(); textBoxSum = new TextBox(); textBoxCount = new TextBox(); buttonSave = new Button(); buttonCancel = new Button(); comboBoxComputer = new ComboBox(); SuspendLayout(); // // label1 // label1.AutoSize = true; label1.Location = new Point(40, 30); label1.Name = "label1"; label1.Size = new Size(56, 15); label1.TabIndex = 0; label1.Text = "Изделие:"; // // label2 // label2.AutoSize = true; label2.Location = new Point(40, 66); label2.Name = "label2"; label2.Size = new Size(75, 15); label2.TabIndex = 1; label2.Text = "Количество:"; // // label3 // label3.AutoSize = true; label3.Location = new Point(40, 98); label3.Name = "label3"; label3.Size = new Size(48, 15); label3.TabIndex = 2; label3.Text = "Сумма:"; // // textBoxSum // textBoxSum.Location = new Point(158, 95); textBoxSum.Name = "textBoxSum"; textBoxSum.Size = new Size(207, 23); textBoxSum.TabIndex = 3; textBoxSum.TextChanged += textBoxSum_TextChanged; // // textBoxCount // textBoxCount.Location = new Point(158, 63); textBoxCount.Name = "textBoxCount"; textBoxCount.Size = new Size(207, 23); textBoxCount.TabIndex = 4; textBoxCount.TextChanged += textBoxCount_TextChanged; // // buttonSave // buttonSave.Location = new Point(190, 135); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(75, 23); buttonSave.TabIndex = 6; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += ButtonSave_Click; // // buttonCancel // buttonCancel.Location = new Point(271, 135); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(75, 23); buttonCancel.TabIndex = 7; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += ButtonCancel_Click; // // comboBoxComputer // comboBoxComputer.FormattingEnabled = true; comboBoxComputer.Location = new Point(158, 27); comboBoxComputer.Name = "comboBoxComputer"; comboBoxComputer.Size = new Size(207, 23); comboBoxComputer.TabIndex = 8; comboBoxComputer.SelectedIndexChanged += comboBoxComputer_SelectedIndexChanged; // // FormCreateOrder // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(394, 166); Controls.Add(comboBoxComputer); Controls.Add(buttonCancel); Controls.Add(buttonSave); Controls.Add(textBoxCount); Controls.Add(textBoxSum); Controls.Add(label3); Controls.Add(label2); Controls.Add(label1); Name = "FormCreateOrder"; Text = "Заказ"; Load += OrderForm_Load; ResumeLayout(false); PerformLayout(); } #endregion private Label label1; private Label label2; private Label label3; private TextBox textBoxSum; private TextBox textBoxCount; private Button buttonSave; private Button buttonCancel; private ComboBox comboBoxComputer; } }