namespace GasStation.Forms { partial class FormSupply { /// /// 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(); labelSupplier = new Label(); comboBoxSupplier = new ComboBox(); label1 = new Label(); numericUpDownCount = new NumericUpDown(); label2 = new Label(); comboBoxProduct = new ComboBox(); ((System.ComponentModel.ISupportInitialize)numericUpDownCount).BeginInit(); SuspendLayout(); // // buttonSave // buttonSave.Anchor = AnchorStyles.Bottom | AnchorStyles.Left; buttonSave.Location = new Point(21, 236); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(89, 24); buttonSave.TabIndex = 1; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += ButtonSave_Click; // // buttonCancel // buttonCancel.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; buttonCancel.Location = new Point(221, 236); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(92, 24); buttonCancel.TabIndex = 2; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += ButtonCancel_Click; // // labelSupplier // labelSupplier.AutoSize = true; labelSupplier.Location = new Point(21, 23); labelSupplier.Name = "labelSupplier"; labelSupplier.Size = new Size(70, 15); labelSupplier.TabIndex = 5; labelSupplier.Text = "Поставщик"; // // comboBoxSupplier // comboBoxSupplier.DropDownStyle = ComboBoxStyle.DropDownList; comboBoxSupplier.FormattingEnabled = true; comboBoxSupplier.Location = new Point(97, 23); comboBoxSupplier.Name = "comboBoxSupplier"; comboBoxSupplier.Size = new Size(216, 23); comboBoxSupplier.TabIndex = 7; // // label1 // label1.AutoSize = true; label1.Location = new Point(21, 91); label1.Name = "label1"; label1.Size = new Size(66, 15); label1.TabIndex = 8; label1.Text = "Количесто"; // // numericUpDownCount // numericUpDownCount.Location = new Point(97, 89); numericUpDownCount.Minimum = new decimal(new int[] { 1, 0, 0, 0 }); numericUpDownCount.Name = "numericUpDownCount"; numericUpDownCount.Size = new Size(216, 23); numericUpDownCount.TabIndex = 9; numericUpDownCount.Value = new decimal(new int[] { 1, 0, 0, 0 }); // // label2 // label2.AutoSize = true; label2.Location = new Point(21, 147); label2.Name = "label2"; label2.Size = new Size(39, 15); label2.TabIndex = 10; label2.Text = "Товар"; // // comboBoxProduct // comboBoxProduct.DropDownStyle = ComboBoxStyle.DropDownList; comboBoxProduct.FormattingEnabled = true; comboBoxProduct.Location = new Point(96, 147); comboBoxProduct.Name = "comboBoxProduct"; comboBoxProduct.Size = new Size(217, 23); comboBoxProduct.TabIndex = 11; // // FormSupply // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(435, 326); Controls.Add(comboBoxProduct); Controls.Add(label2); Controls.Add(numericUpDownCount); Controls.Add(label1); Controls.Add(comboBoxSupplier); Controls.Add(labelSupplier); Controls.Add(buttonCancel); Controls.Add(buttonSave); Name = "FormSupply"; Text = "Поставки"; ((System.ComponentModel.ISupportInitialize)numericUpDownCount).EndInit(); ResumeLayout(false); PerformLayout(); } #endregion private Button buttonSave; private Button buttonCancel; private Label labelSupplier; private ComboBox comboBoxSupplier; private Label label1; private NumericUpDown numericUpDownCount; private Label label2; private ComboBox comboBoxProduct; } }