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(); ((System.ComponentModel.ISupportInitialize)numericUpDownCost).BeginInit(); SuspendLayout(); // // label2 // label2.AutoSize = true; label2.Location = new Point(33, 29); label2.Name = "label2"; label2.Size = new Size(39, 15); label2.TabIndex = 1; label2.Text = "Товар"; // // label3 // label3.AutoSize = true; label3.Location = new Point(33, 99); label3.Name = "label3"; label3.Size = new Size(67, 15); label3.TabIndex = 2; label3.Text = "Стоимость"; // // numericUpDownCost // numericUpDownCost.Location = new Point(178, 99); 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, 166); 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, 166); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(93, 25); buttonCancel.TabIndex = 7; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += ButtonCancel_Click; // // FormProduct // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(414, 246); 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; } }