namespace IceCreamShopView { 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(); comboBoxShop = new ComboBox(); labelIceCream = new Label(); comboBoxIceCream = new ComboBox(); labelCount = new Label(); textBoxCount = new TextBox(); buttonSave = new Button(); buttonCancel = new Button(); SuspendLayout(); // // labelShop // labelShop.AutoSize = true; labelShop.Location = new Point(14, 13); labelShop.Margin = new Padding(4, 0, 4, 0); labelShop.Name = "labelShop"; labelShop.Size = new Size(60, 15); labelShop.TabIndex = 2; labelShop.Text = "Магазин :"; // // comboBoxShop // comboBoxShop.DropDownStyle = ComboBoxStyle.DropDownList; comboBoxShop.FormattingEnabled = true; comboBoxShop.Location = new Point(102, 10); comboBoxShop.Margin = new Padding(4, 3, 4, 3); comboBoxShop.Name = "comboBoxShop"; comboBoxShop.Size = new Size(252, 23); comboBoxShop.TabIndex = 5; // // labelIceCream // labelIceCream.AutoSize = true; labelIceCream.Location = new Point(14, 48); labelIceCream.Margin = new Padding(4, 0, 4, 0); labelIceCream.Name = "labelIceCream"; labelIceCream.Size = new Size(80, 15); labelIceCream.TabIndex = 6; labelIceCream.Text = "Мороженое :"; // // comboBoxIceCream // comboBoxIceCream.DropDownStyle = ComboBoxStyle.DropDownList; comboBoxIceCream.FormattingEnabled = true; comboBoxIceCream.Location = new Point(102, 44); comboBoxIceCream.Margin = new Padding(4, 3, 4, 3); comboBoxIceCream.Name = "comboBoxIceCream"; comboBoxIceCream.Size = new Size(252, 23); comboBoxIceCream.TabIndex = 7; // // labelCount // labelCount.AutoSize = true; labelCount.Location = new Point(14, 83); labelCount.Margin = new Padding(4, 0, 4, 0); labelCount.Name = "labelCount"; labelCount.Size = new Size(78, 15); labelCount.TabIndex = 8; labelCount.Text = "Количество :"; // // textBoxCount // textBoxCount.Location = new Point(102, 80); textBoxCount.Margin = new Padding(4, 3, 4, 3); textBoxCount.Name = "textBoxCount"; textBoxCount.Size = new Size(252, 23); textBoxCount.TabIndex = 9; // // buttonSave // buttonSave.Location = new Point(160, 112); buttonSave.Margin = new Padding(4, 3, 4, 3); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(88, 27); buttonSave.TabIndex = 10; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += ButtonSave_Click; // // buttonCancel // buttonCancel.Location = new Point(254, 112); buttonCancel.Margin = new Padding(4, 3, 4, 3); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(88, 27); buttonCancel.TabIndex = 11; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += ButtonCancel_Click; // // FormMakeShipment // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(373, 147); Controls.Add(buttonCancel); Controls.Add(buttonSave); Controls.Add(textBoxCount); Controls.Add(labelCount); Controls.Add(comboBoxIceCream); Controls.Add(labelIceCream); Controls.Add(comboBoxShop); Controls.Add(labelShop); Name = "FormMakeShipment"; StartPosition = FormStartPosition.CenterScreen; Text = "Пополнение магазина"; Load += FormMakeShipment_Load; ResumeLayout(false); PerformLayout(); } #endregion private Label labelShop; private ComboBox comboBoxShop; private Label labelIceCream; private ComboBox comboBoxIceCream; private Label labelCount; private TextBox textBoxCount; private Button buttonSave; private Button buttonCancel; } }