namespace AccountingWarehouseProductsView { partial class FormShipment { /// /// 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() { labelShipmentDate = new Label(); labelCount = new Label(); labelRecipient = new Label(); textBoxCount = new TextBox(); textBoxRecipient = new TextBox(); ButtonSave = new Button(); ButtonCancel = new Button(); dateTimePickerShipmentDate = new DateTimePicker(); SuspendLayout(); // // labelShipmentDate // labelShipmentDate.AutoSize = true; labelShipmentDate.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point); labelShipmentDate.Location = new Point(17, 31); labelShipmentDate.Name = "labelShipmentDate"; labelShipmentDate.Size = new Size(114, 21); labelShipmentDate.TabIndex = 0; labelShipmentDate.Text = "Дата отгрузки:"; // // labelCount // labelCount.AutoSize = true; labelCount.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point); labelCount.Location = new Point(17, 77); labelCount.Name = "labelCount"; labelCount.Size = new Size(96, 21); labelCount.TabIndex = 1; labelCount.Text = "Количество:"; // // labelRecipient // labelRecipient.AutoSize = true; labelRecipient.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point); labelRecipient.Location = new Point(17, 122); labelRecipient.Name = "labelRecipient"; labelRecipient.Size = new Size(97, 21); labelRecipient.TabIndex = 2; labelRecipient.Text = "Получатель:"; // // textBoxCount // textBoxCount.Location = new Point(145, 77); textBoxCount.Name = "textBoxCount"; textBoxCount.Size = new Size(182, 23); textBoxCount.TabIndex = 4; // // textBoxRecipient // textBoxRecipient.Location = new Point(145, 124); textBoxRecipient.Name = "textBoxRecipient"; textBoxRecipient.Size = new Size(182, 23); textBoxRecipient.TabIndex = 5; // // ButtonSave // ButtonSave.Location = new Point(30, 184); ButtonSave.Name = "ButtonSave"; ButtonSave.Size = new Size(137, 52); ButtonSave.TabIndex = 6; ButtonSave.Text = "Сохранить"; ButtonSave.UseVisualStyleBackColor = true; ButtonSave.Click += buttonSave_Click; // // ButtonCancel // ButtonCancel.Location = new Point(203, 184); ButtonCancel.Name = "ButtonCancel"; ButtonCancel.Size = new Size(137, 52); ButtonCancel.TabIndex = 7; ButtonCancel.Text = "Отмена"; ButtonCancel.UseVisualStyleBackColor = true; ButtonCancel.Click += buttonCancel_Click; // // dateTimePickerShipmentDate // dateTimePickerShipmentDate.Location = new Point(145, 31); dateTimePickerShipmentDate.Name = "dateTimePickerShipmentDate"; dateTimePickerShipmentDate.Size = new Size(182, 23); dateTimePickerShipmentDate.TabIndex = 8; // // FormShipment // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(385, 283); Controls.Add(dateTimePickerShipmentDate); Controls.Add(ButtonCancel); Controls.Add(ButtonSave); Controls.Add(textBoxRecipient); Controls.Add(textBoxCount); Controls.Add(labelRecipient); Controls.Add(labelCount); Controls.Add(labelShipmentDate); Name = "FormShipment"; Text = "Отгрузка"; Load += FormShipment_Load; ResumeLayout(false); PerformLayout(); } #endregion private Label labelShipmentDate; private Label labelCount; private Label labelRecipient; private TextBox textBoxCount; private TextBox textBoxRecipient; private Button ButtonSave; private Button ButtonCancel; private DateTimePicker dateTimePickerShipmentDate; } }