namespace AccountingWarehouseProductsView
{
partial class FormProduct
{
///
/// 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()
{
labelName = new Label();
labelPrice = new Label();
labelCategory = new Label();
labelDateofFabrication = new Label();
labelValidUntil = new Label();
textBoxName = new TextBox();
textBoxPrice = new TextBox();
textBoxCategory = new TextBox();
buttonSave = new Button();
buttonCancel = new Button();
dateTimePickerDateofFabrication = new DateTimePicker();
dateTimePickerValidUntil = new DateTimePicker();
SuspendLayout();
//
// labelName
//
labelName.AutoSize = true;
labelName.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point);
labelName.Location = new Point(12, 21);
labelName.Name = "labelName";
labelName.Size = new Size(81, 21);
labelName.TabIndex = 0;
labelName.Text = "Название:";
//
// labelPrice
//
labelPrice.AutoSize = true;
labelPrice.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point);
labelPrice.Location = new Point(12, 61);
labelPrice.Name = "labelPrice";
labelPrice.Size = new Size(50, 21);
labelPrice.TabIndex = 1;
labelPrice.Text = "Цена:";
//
// labelCategory
//
labelCategory.AutoSize = true;
labelCategory.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point);
labelCategory.Location = new Point(12, 106);
labelCategory.Name = "labelCategory";
labelCategory.Size = new Size(86, 21);
labelCategory.TabIndex = 2;
labelCategory.Text = "Категория:";
//
// labelDateofFabrication
//
labelDateofFabrication.AutoSize = true;
labelDateofFabrication.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point);
labelDateofFabrication.Location = new Point(12, 150);
labelDateofFabrication.Name = "labelDateofFabrication";
labelDateofFabrication.Size = new Size(148, 21);
labelDateofFabrication.TabIndex = 3;
labelDateofFabrication.Text = "Дата изготовления:";
//
// labelValidUntil
//
labelValidUntil.AutoSize = true;
labelValidUntil.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point);
labelValidUntil.Location = new Point(12, 194);
labelValidUntil.Name = "labelValidUntil";
labelValidUntil.Size = new Size(78, 21);
labelValidUntil.TabIndex = 4;
labelValidUntil.Text = "Годен до:";
//
// textBoxName
//
textBoxName.Location = new Point(109, 23);
textBoxName.Name = "textBoxName";
textBoxName.Size = new Size(221, 23);
textBoxName.TabIndex = 5;
//
// textBoxPrice
//
textBoxPrice.Location = new Point(109, 63);
textBoxPrice.Name = "textBoxPrice";
textBoxPrice.Size = new Size(221, 23);
textBoxPrice.TabIndex = 6;
//
// textBoxCategory
//
textBoxCategory.Location = new Point(109, 106);
textBoxCategory.Name = "textBoxCategory";
textBoxCategory.Size = new Size(221, 23);
textBoxCategory.TabIndex = 7;
//
// buttonSave
//
buttonSave.Location = new Point(383, 23);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(118, 38);
buttonSave.TabIndex = 10;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += buttonSave_Click;
//
// buttonCancel
//
buttonCancel.Location = new Point(383, 77);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(118, 38);
buttonCancel.TabIndex = 11;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += buttonCancel_Click;
//
// dateTimePickerDateofFabrication
//
dateTimePickerDateofFabrication.Location = new Point(166, 150);
dateTimePickerDateofFabrication.Name = "dateTimePickerDateofFabrication";
dateTimePickerDateofFabrication.Size = new Size(164, 23);
dateTimePickerDateofFabrication.TabIndex = 12;
//
// dateTimePickerValidUntil
//
dateTimePickerValidUntil.Location = new Point(109, 194);
dateTimePickerValidUntil.Name = "dateTimePickerValidUntil";
dateTimePickerValidUntil.Size = new Size(221, 23);
dateTimePickerValidUntil.TabIndex = 13;
//
// FormProduct
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(538, 313);
Controls.Add(dateTimePickerValidUntil);
Controls.Add(dateTimePickerDateofFabrication);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(textBoxCategory);
Controls.Add(textBoxPrice);
Controls.Add(textBoxName);
Controls.Add(labelValidUntil);
Controls.Add(labelDateofFabrication);
Controls.Add(labelCategory);
Controls.Add(labelPrice);
Controls.Add(labelName);
Name = "FormProduct";
Text = "Продукт";
Load += FormProduct_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label labelName;
private Label labelPrice;
private Label labelCategory;
private Label labelDateofFabrication;
private Label labelValidUntil;
private TextBox textBoxName;
private TextBox textBoxPrice;
private TextBox textBoxCategory;
private Button buttonSave;
private Button buttonCancel;
private DateTimePicker dateTimePickerDateofFabrication;
private DateTimePicker dateTimePickerValidUntil;
}
}