namespace GasStation.Forms { partial class FormProduct { /// /// 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() { label2 = new Label(); label3 = new Label(); numericUpDownCost = new NumericUpDown(); comboBoxProduct = new ComboBox(); buttonSave = new Button(); buttonCancel = new Button(); label1 = new Label(); textBoxProduct = new TextBox(); ((System.ComponentModel.ISupportInitialize)numericUpDownCost).BeginInit(); SuspendLayout(); // // label2 // label2.AutoSize = true; label2.Location = new Point(33, 29); label2.Name = "label2"; label2.Size = new Size(67, 15); label2.TabIndex = 1; label2.Text = "Тип товара"; // // label3 // label3.AutoSize = true; label3.Location = new Point(33, 140); label3.Name = "label3"; label3.Size = new Size(67, 15); label3.TabIndex = 2; label3.Text = "Стоимость"; // // numericUpDownCost // numericUpDownCost.Location = new Point(178, 140); numericUpDownCost.Minimum = new decimal(new int[] { 1, 0, 0, 0 }); numericUpDownCost.Name = "numericUpDownCost"; numericUpDownCost.Size = new Size(169, 23); numericUpDownCost.TabIndex = 3; numericUpDownCost.Value = new decimal(new int[] { 1, 0, 0, 0 }); // // comboBoxProduct // comboBoxProduct.DropDownStyle = ComboBoxStyle.DropDownList; comboBoxProduct.FormattingEnabled = true; comboBoxProduct.Location = new Point(179, 29); comboBoxProduct.Name = "comboBoxProduct"; comboBoxProduct.Size = new Size(168, 23); comboBoxProduct.TabIndex = 4; // // buttonSave // buttonSave.Location = new Point(33, 207); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(88, 25); buttonSave.TabIndex = 6; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += ButtonSave_Click; // // buttonCancel // buttonCancel.Location = new Point(254, 207); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(93, 25); buttonCancel.TabIndex = 7; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += ButtonCancel_Click; // // label1 // label1.AutoSize = true; label1.Location = new Point(34, 85); label1.Name = "label1"; label1.Size = new Size(99, 15); label1.TabIndex = 8; label1.Text = "Название товара"; // // textBoxProduct // textBoxProduct.Location = new Point(178, 86); textBoxProduct.Name = "textBoxProduct"; textBoxProduct.Size = new Size(169, 23); textBoxProduct.TabIndex = 9; // // FormProduct // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(414, 278); Controls.Add(textBoxProduct); Controls.Add(label1); Controls.Add(buttonCancel); Controls.Add(buttonSave); Controls.Add(comboBoxProduct); Controls.Add(numericUpDownCost); Controls.Add(label3); Controls.Add(label2); Name = "FormProduct"; Text = "Товар"; ((System.ComponentModel.ISupportInitialize)numericUpDownCost).EndInit(); ResumeLayout(false); PerformLayout(); } #endregion private Label label2; private Label label3; private NumericUpDown numericUpDownCost; private ComboBox comboBoxProduct; private Button buttonSave; private Button buttonCancel; private Label label1; private TextBox textBoxProduct; } }