namespace PrintedBarView { partial class FormMakeShipment { /// /// 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() { labelShop = new Label(); labelPrinted = new Label(); label1 = new Label(); comboBoxShop = new ComboBox(); comboBoxPrinted = new ComboBox(); textBoxCount = new TextBox(); buttonSave = new Button(); buttonCancel = new Button(); SuspendLayout(); // // labelShop // labelShop.AutoSize = true; labelShop.Location = new Point(12, 9); labelShop.Name = "labelShop"; labelShop.Size = new Size(72, 20); labelShop.TabIndex = 0; labelShop.Text = "Магазин:"; // // labelPrinted // labelPrinted.AutoSize = true; labelPrinted.Location = new Point(12, 45); labelPrinted.Name = "labelPrinted"; labelPrinted.Size = new Size(65, 20); labelPrinted.TabIndex = 1; labelPrinted.Text = "Закуски:"; // // label1 // label1.AutoSize = true; label1.Location = new Point(12, 84); label1.Name = "label1"; label1.Size = new Size(93, 20); label1.TabIndex = 2; label1.Text = "Количество:"; // // comboBoxShop // comboBoxShop.FormattingEnabled = true; comboBoxShop.Location = new Point(111, 6); comboBoxShop.Name = "comboBoxShop"; comboBoxShop.Size = new Size(252, 28); comboBoxShop.TabIndex = 3; // // comboBoxPrinted // comboBoxPrinted.FormattingEnabled = true; comboBoxPrinted.Location = new Point(111, 45); comboBoxPrinted.Name = "comboBoxPrinted"; comboBoxPrinted.Size = new Size(252, 28); comboBoxPrinted.TabIndex = 4; // // textBoxCount // textBoxCount.Location = new Point(111, 84); textBoxCount.Name = "textBoxCount"; textBoxCount.Size = new Size(252, 27); textBoxCount.TabIndex = 5; // // buttonSave // buttonSave.Location = new Point(111, 133); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(104, 37); buttonSave.TabIndex = 6; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += ButtonSave_Click; // // buttonCancel // buttonCancel.Location = new Point(221, 133); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(110, 37); buttonCancel.TabIndex = 7; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += ButtonCancel_Click; // // FromMakeShipment // AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(386, 182); Controls.Add(buttonCancel); Controls.Add(buttonSave); Controls.Add(textBoxCount); Controls.Add(comboBoxPrinted); Controls.Add(comboBoxShop); Controls.Add(label1); Controls.Add(labelPrinted); Controls.Add(labelShop); Name = "FromMakeShipment"; Text = "Пополнение магазина"; Load += FormMakeShipment_Load; ResumeLayout(false); PerformLayout(); } #endregion private Label labelShop; private Label labelPrinted; private Label label1; private ComboBox comboBoxShop; private ComboBox comboBoxPrinted; private TextBox textBoxCount; private Button buttonSave; private Button buttonCancel; } }