76 lines
2.4 KiB
C#
76 lines
2.4 KiB
C#
|
namespace ComponentsLab
|
|||
|
{
|
|||
|
partial class ImageLoad
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
pictureBoxAvatar = new PictureBox();
|
|||
|
buttonLoad = new Button();
|
|||
|
((System.ComponentModel.ISupportInitialize)pictureBoxAvatar).BeginInit();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// pictureBoxAvatar
|
|||
|
//
|
|||
|
pictureBoxAvatar.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
|
|||
|
pictureBoxAvatar.BorderStyle = BorderStyle.FixedSingle;
|
|||
|
pictureBoxAvatar.Location = new Point(3, 3);
|
|||
|
pictureBoxAvatar.Name = "pictureBoxAvatar";
|
|||
|
pictureBoxAvatar.Size = new Size(225, 194);
|
|||
|
pictureBoxAvatar.TabIndex = 0;
|
|||
|
pictureBoxAvatar.TabStop = false;
|
|||
|
//
|
|||
|
// buttonLoad
|
|||
|
//
|
|||
|
buttonLoad.Anchor = AnchorStyles.Bottom;
|
|||
|
buttonLoad.Location = new Point(78, 203);
|
|||
|
buttonLoad.Name = "buttonLoad";
|
|||
|
buttonLoad.Size = new Size(74, 23);
|
|||
|
buttonLoad.TabIndex = 1;
|
|||
|
buttonLoad.Text = "Загрузить";
|
|||
|
buttonLoad.UseVisualStyleBackColor = true;
|
|||
|
buttonLoad.Click += buttonLoad_Click;
|
|||
|
//
|
|||
|
// ImageLoad
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
BorderStyle = BorderStyle.FixedSingle;
|
|||
|
Controls.Add(buttonLoad);
|
|||
|
Controls.Add(pictureBoxAvatar);
|
|||
|
Name = "ImageLoad";
|
|||
|
Size = new Size(232, 235);
|
|||
|
((System.ComponentModel.ISupportInitialize)pictureBoxAvatar).EndInit();
|
|||
|
ResumeLayout(false);
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private PictureBox pictureBoxAvatar;
|
|||
|
private Button buttonLoad;
|
|||
|
}
|
|||
|
}
|