namespace WinFormsApp { partial class FormSupplyProduct { /// /// 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() { numericUpDownCount = new NumericUpDown(); comboBoxProduct = new ComboBox(); buttonSave = new Button(); buttonCancel = new Button(); label1 = new Label(); label2 = new Label(); ((System.ComponentModel.ISupportInitialize)numericUpDownCount).BeginInit(); SuspendLayout(); // // numericUpDownCount // numericUpDownCount.Location = new Point(109, 69); numericUpDownCount.Maximum = new decimal(new int[] { 100000, 0, 0, 0 }); numericUpDownCount.Name = "numericUpDownCount"; numericUpDownCount.Size = new Size(157, 23); numericUpDownCount.TabIndex = 1; // // comboBoxProduct // comboBoxProduct.FormattingEnabled = true; comboBoxProduct.Location = new Point(109, 20); comboBoxProduct.Name = "comboBoxProduct"; comboBoxProduct.Size = new Size(158, 23); comboBoxProduct.TabIndex = 2; // // buttonSave // buttonSave.BackColor = Color.FromArgb(192, 255, 192); buttonSave.Font = new Font("Segoe UI", 9F); buttonSave.Location = new Point(109, 98); buttonSave.Name = "buttonSave"; buttonSave.RightToLeft = RightToLeft.No; buttonSave.Size = new Size(77, 28); buttonSave.TabIndex = 3; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = false; buttonSave.Click += ButtonSave_Click; // // buttonCancel // buttonCancel.BackColor = Color.FromArgb(255, 192, 192); buttonCancel.Font = new Font("Segoe UI", 9F); buttonCancel.Location = new Point(192, 98); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(75, 28); buttonCancel.TabIndex = 4; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = false; buttonCancel.Click += ButtonCancel_Click; // // label1 // label1.AutoSize = true; label1.Font = new Font("Segoe UI", 12F, FontStyle.Bold); label1.Location = new Point(12, 22); label1.Name = "label1"; label1.Size = new Size(60, 21); label1.TabIndex = 5; label1.Text = "Товар:"; // // label2 // label2.AutoSize = true; label2.Font = new Font("Segoe UI", 12F, FontStyle.Bold); label2.Location = new Point(12, 66); label2.Name = "label2"; label2.Size = new Size(69, 21); label2.TabIndex = 6; label2.Text = "Кол-во:"; // // FormSupplyProduct // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; BackColor = Color.AliceBlue; ClientSize = new Size(287, 138); Controls.Add(label2); Controls.Add(label1); Controls.Add(buttonCancel); Controls.Add(buttonSave); Controls.Add(comboBoxProduct); Controls.Add(numericUpDownCount); Name = "FormSupplyProduct"; Text = "+ Товар к поставке"; ((System.ComponentModel.ISupportInitialize)numericUpDownCount).EndInit(); ResumeLayout(false); PerformLayout(); } #endregion private NumericUpDown numericUpDownCount; private ComboBox comboBoxProduct; private Button buttonSave; private Button buttonCancel; private Label label1; private Label label2; } }