namespace Publication.Forms { partial class FormOrder { /// /// 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() { labelCustomer = new Label(); labelPublishingHouse = new Label(); labelDescription = new Label(); comboBoxPublishingHouse = new ComboBox(); comboBoxCutomer = new ComboBox(); buttonSave = new Button(); buttonBreak = new Button(); textBoxDescription = new TextBox(); SuspendLayout(); // // labelCustomer // labelCustomer.AutoSize = true; labelCustomer.Location = new Point(28, 37); labelCustomer.Name = "labelCustomer"; labelCustomer.Size = new Size(71, 20); labelCustomer.TabIndex = 0; labelCustomer.Text = "Заказчик"; // // labelPublishingHouse // labelPublishingHouse.AutoSize = true; labelPublishingHouse.Location = new Point(28, 104); labelPublishingHouse.Name = "labelPublishingHouse"; labelPublishingHouse.Size = new Size(103, 20); labelPublishingHouse.TabIndex = 1; labelPublishingHouse.Text = "Издательство"; // // labelDescription // labelDescription.AutoSize = true; labelDescription.Location = new Point(28, 175); labelDescription.Name = "labelDescription"; labelDescription.Size = new Size(128, 20); labelDescription.TabIndex = 3; labelDescription.Text = "Описание заказа"; // // comboBoxPublishingHouse // comboBoxPublishingHouse.DropDownStyle = ComboBoxStyle.DropDownList; comboBoxPublishingHouse.FormattingEnabled = true; comboBoxPublishingHouse.Location = new Point(274, 101); comboBoxPublishingHouse.Name = "comboBoxPublishingHouse"; comboBoxPublishingHouse.Size = new Size(151, 28); comboBoxPublishingHouse.TabIndex = 4; // // comboBoxCutomer // comboBoxCutomer.DropDownStyle = ComboBoxStyle.DropDownList; comboBoxCutomer.FormattingEnabled = true; comboBoxCutomer.Location = new Point(274, 37); comboBoxCutomer.Name = "comboBoxCutomer"; comboBoxCutomer.Size = new Size(151, 28); comboBoxCutomer.TabIndex = 5; // // buttonSave // buttonSave.Location = new Point(28, 337); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(94, 29); buttonSave.TabIndex = 8; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += buttonSave_Click; // // buttonBreak // buttonBreak.Location = new Point(331, 337); buttonBreak.Name = "buttonBreak"; buttonBreak.Size = new Size(94, 29); buttonBreak.TabIndex = 9; buttonBreak.Text = "Отмена"; buttonBreak.UseVisualStyleBackColor = true; buttonBreak.Click += buttonBreak_Click; // // textBoxDescription // textBoxDescription.Location = new Point(274, 175); textBoxDescription.Multiline = true; textBoxDescription.Name = "textBoxDescription"; textBoxDescription.ScrollBars = ScrollBars.Vertical; textBoxDescription.Size = new Size(151, 102); textBoxDescription.TabIndex = 10; // // FormOrder // AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(469, 416); Controls.Add(textBoxDescription); Controls.Add(buttonBreak); Controls.Add(buttonSave); Controls.Add(comboBoxCutomer); Controls.Add(comboBoxPublishingHouse); Controls.Add(labelDescription); Controls.Add(labelPublishingHouse); Controls.Add(labelCustomer); Name = "FormOrder"; StartPosition = FormStartPosition.CenterScreen; Text = "Заказ"; ResumeLayout(false); PerformLayout(); } #endregion private Label labelCustomer; private Label labelPublishingHouse; private Label labelDescription; private ComboBox comboBoxPublishingHouse; private ComboBox comboBoxCutomer; private Button buttonSave; private Button buttonBreak; private TextBox textBoxDescription; } }