namespace CarRepairShopView { 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(); labelRepair = new Label(); comboBoxRepair = 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; // // labelRepair // labelRepair.AutoSize = true; labelRepair.Location = new Point(14, 48); labelRepair.Margin = new Padding(4, 0, 4, 0); labelRepair.Name = "labelRepair"; labelRepair.Size = new Size(80, 15); labelRepair.TabIndex = 6; labelRepair.Text = "Ремонт:"; // // comboBoxRepair // comboBoxRepair.DropDownStyle = ComboBoxStyle.DropDownList; comboBoxRepair.FormattingEnabled = true; comboBoxRepair.Location = new Point(102, 44); comboBoxRepair.Margin = new Padding(4, 3, 4, 3); comboBoxRepair.Name = "comboBoxRepair"; comboBoxRepair.Size = new Size(252, 23); comboBoxRepair.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(comboBoxRepair); Controls.Add(labelRepair); 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 labelRepair; private ComboBox comboBoxRepair; private Label labelCount; private TextBox textBoxCount; private Button buttonSave; private Button buttonCancel; } }