namespace AccountingWarehouseProductsView { partial class FormWarehouseProduct { /// /// 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() { labelProduct = new Label(); labelCount = new Label(); comboBoxProduct = new ComboBox(); textBoxCount = new TextBox(); buttonSave = new Button(); buttonCancel = new Button(); SuspendLayout(); // // labelProduct // labelProduct.AutoSize = true; labelProduct.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point); labelProduct.Location = new Point(25, 39); labelProduct.Name = "labelProduct"; labelProduct.Size = new Size(74, 21); labelProduct.TabIndex = 0; labelProduct.Text = "Продукт:"; // // labelCount // labelCount.AutoSize = true; labelCount.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point); labelCount.Location = new Point(25, 83); labelCount.Name = "labelCount"; labelCount.Size = new Size(96, 21); labelCount.TabIndex = 1; labelCount.Text = "Количество:"; // // comboBoxProduct // comboBoxProduct.DropDownStyle = ComboBoxStyle.DropDownList; comboBoxProduct.FormattingEnabled = true; comboBoxProduct.Location = new Point(105, 41); comboBoxProduct.Name = "comboBoxProduct"; comboBoxProduct.Size = new Size(256, 23); comboBoxProduct.TabIndex = 2; // // textBoxCount // textBoxCount.Location = new Point(127, 85); textBoxCount.Name = "textBoxCount"; textBoxCount.Size = new Size(234, 23); textBoxCount.TabIndex = 3; // // buttonSave // buttonSave.Location = new Point(52, 140); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(121, 47); buttonSave.TabIndex = 4; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += buttonSave_Click; // // buttonCancel // buttonCancel.Location = new Point(230, 140); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(121, 47); buttonCancel.TabIndex = 5; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += buttonCancel_Click; // // FormWarehouseProduct // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(437, 218); Controls.Add(buttonCancel); Controls.Add(buttonSave); Controls.Add(textBoxCount); Controls.Add(comboBoxProduct); Controls.Add(labelCount); Controls.Add(labelProduct); Name = "FormWarehouseProduct"; Text = "Склад продукта"; ResumeLayout(false); PerformLayout(); } #endregion private Label labelProduct; private Label labelCount; private ComboBox comboBoxProduct; private TextBox textBoxCount; private Button buttonSave; private Button buttonCancel; } }