102 lines
3.8 KiB
C#
102 lines
3.8 KiB
C#
namespace samusev_42
|
||
{
|
||
partial class CardForm
|
||
{
|
||
/// <summary>
|
||
/// Обязательная переменная конструктора.
|
||
/// </summary>
|
||
private System.ComponentModel.IContainer components = null;
|
||
|
||
/// <summary>
|
||
/// Освободить все используемые ресурсы.
|
||
/// </summary>
|
||
/// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
|
||
protected override void Dispose(bool disposing)
|
||
{
|
||
if (disposing && (components != null))
|
||
{
|
||
components.Dispose();
|
||
}
|
||
base.Dispose(disposing);
|
||
}
|
||
|
||
#region Код, автоматически созданный конструктором компонентов
|
||
|
||
/// <summary>
|
||
/// Требуемый метод для поддержки конструктора — не изменяйте
|
||
/// содержимое этого метода с помощью редактора кода.
|
||
/// </summary>
|
||
private void InitializeComponent()
|
||
{
|
||
labelName = new Label();
|
||
labelPrice = new Label();
|
||
pictureBoxProduct = new PictureBox();
|
||
labelDescription = new Label();
|
||
((System.ComponentModel.ISupportInitialize)pictureBoxProduct).BeginInit();
|
||
SuspendLayout();
|
||
//
|
||
// labelName
|
||
//
|
||
labelName.AutoSize = true;
|
||
labelName.Font = new Font("Segoe UI", 9.75F, FontStyle.Bold);
|
||
labelName.Location = new Point(220, 30);
|
||
labelName.Name = "labelName";
|
||
labelName.Size = new Size(45, 17);
|
||
labelName.TabIndex = 0;
|
||
labelName.Text = "label1";
|
||
//
|
||
// labelPrice
|
||
//
|
||
labelPrice.AutoSize = true;
|
||
labelPrice.Font = new Font("Segoe UI", 9.75F, FontStyle.Bold);
|
||
labelPrice.Location = new Point(220, 61);
|
||
labelPrice.Name = "labelPrice";
|
||
labelPrice.Size = new Size(45, 17);
|
||
labelPrice.TabIndex = 1;
|
||
labelPrice.Text = "label2";
|
||
//
|
||
// pictureBoxProduct
|
||
//
|
||
pictureBoxProduct.BackColor = Color.White;
|
||
pictureBoxProduct.Location = new Point(16, 12);
|
||
pictureBoxProduct.Name = "pictureBoxProduct";
|
||
pictureBoxProduct.Size = new Size(181, 118);
|
||
pictureBoxProduct.TabIndex = 2;
|
||
pictureBoxProduct.TabStop = false;
|
||
//
|
||
// labelDescription
|
||
//
|
||
labelDescription.AutoSize = true;
|
||
labelDescription.Font = new Font("Segoe UI", 9.75F, FontStyle.Bold);
|
||
labelDescription.Location = new Point(220, 87);
|
||
labelDescription.Name = "labelDescription";
|
||
labelDescription.Size = new Size(45, 17);
|
||
labelDescription.TabIndex = 3;
|
||
labelDescription.Text = "label1";
|
||
//
|
||
// CardForm
|
||
//
|
||
AutoScaleDimensions = new SizeF(7F, 15F);
|
||
AutoScaleMode = AutoScaleMode.Font;
|
||
BackColor = Color.Bisque;
|
||
Controls.Add(labelDescription);
|
||
Controls.Add(pictureBoxProduct);
|
||
Controls.Add(labelPrice);
|
||
Controls.Add(labelName);
|
||
Name = "CardForm";
|
||
Size = new Size(708, 149);
|
||
Load += CardForm_Load;
|
||
((System.ComponentModel.ISupportInitialize)pictureBoxProduct).EndInit();
|
||
ResumeLayout(false);
|
||
PerformLayout();
|
||
}
|
||
|
||
#endregion
|
||
|
||
private Label labelName;
|
||
private Label labelPrice;
|
||
private PictureBox pictureBoxProduct;
|
||
private Label labelDescription;
|
||
}
|
||
}
|