namespace ShipyardView { partial class FormCreateOrder { /// /// 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() { textBoxCount = new TextBox(); textBoxSum = new TextBox(); ComboBoxManufacture = new ComboBox(); ButtonCancel = new Button(); ButtonSave = new Button(); labelItem = new Label(); labelcount = new Label(); labeltotal = new Label(); ComboBoxClient = new ComboBox(); labelClient = new Label(); SuspendLayout(); // // textBoxCount // textBoxCount.Location = new Point(343, 62); textBoxCount.Name = "textBoxCount"; textBoxCount.Size = new Size(125, 27); textBoxCount.TabIndex = 1; textBoxCount.TextChanged += textBoxCount_TextChanged; // // textBoxSum // textBoxSum.Location = new Point(377, 109); textBoxSum.Name = "textBoxSum"; textBoxSum.ReadOnly = true; textBoxSum.Size = new Size(125, 27); textBoxSum.TabIndex = 2; // // ComboBoxManufacture // ComboBoxManufacture.FormattingEnabled = true; ComboBoxManufacture.Location = new Point(129, 55); ComboBoxManufacture.Name = "ComboBoxManufacture"; ComboBoxManufacture.Size = new Size(151, 28); ComboBoxManufacture.TabIndex = 3; ComboBoxManufacture.SelectedIndexChanged += ComboBoxManufacture_SelectedIndexChanged; // // ButtonCancel // ButtonCancel.Location = new Point(440, 168); ButtonCancel.Name = "ButtonCancel"; ButtonCancel.Size = new Size(94, 29); ButtonCancel.TabIndex = 4; ButtonCancel.Text = "отмена"; ButtonCancel.UseVisualStyleBackColor = true; ButtonCancel.Click += ButtonCancel_Click; // // ButtonSave // ButtonSave.Location = new Point(307, 168); ButtonSave.Name = "ButtonSave"; ButtonSave.Size = new Size(94, 29); ButtonSave.TabIndex = 5; ButtonSave.Text = "сохранить"; ButtonSave.UseVisualStyleBackColor = true; ButtonSave.Click += ButtonSave_Click; // // labelItem // labelItem.AutoSize = true; labelItem.Location = new Point(165, 22); labelItem.Name = "labelItem"; labelItem.Size = new Size(67, 20); labelItem.TabIndex = 6; labelItem.Text = "корабль"; // // labelcount // labelcount.AutoSize = true; labelcount.Location = new Point(360, 22); labelcount.Name = "labelcount"; labelcount.Size = new Size(88, 20); labelcount.TabIndex = 7; labelcount.Text = "количество"; // // labeltotal // labeltotal.AutoSize = true; labeltotal.Location = new Point(307, 112); labeltotal.Name = "labeltotal"; labeltotal.Size = new Size(51, 20); labeltotal.TabIndex = 8; labeltotal.Text = "итого:"; // // ComboBoxClient // ComboBoxClient.FormattingEnabled = true; ComboBoxClient.Location = new Point(511, 62); ComboBoxClient.Name = "ComboBoxClient"; ComboBoxClient.Size = new Size(151, 28); ComboBoxClient.TabIndex = 9; // // labelClient // labelClient.AutoSize = true; labelClient.Location = new Point(537, 19); labelClient.Name = "labelClient"; labelClient.Size = new Size(56, 20); labelClient.TabIndex = 10; labelClient.Text = "клиент"; // // FormCreateOrder // AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(800, 209); Controls.Add(labelClient); Controls.Add(ComboBoxClient); Controls.Add(labeltotal); Controls.Add(labelcount); Controls.Add(labelItem); Controls.Add(ButtonSave); Controls.Add(ButtonCancel); Controls.Add(ComboBoxManufacture); Controls.Add(textBoxSum); Controls.Add(textBoxCount); Name = "FormCreateOrder"; Text = "FormCreateOrder"; Load += FormCreateOrder_Load; ResumeLayout(false); PerformLayout(); } #endregion private TextBox textBoxCount; private TextBox textBoxSum; private ComboBox ComboBoxManufacture; private Button ButtonCancel; private Button ButtonSave; private Label labelItem; private Label labelcount; private Label labeltotal; private ComboBox ComboBoxClient; private Label labelClient; } }