61 lines
2.1 KiB
C#
61 lines
2.1 KiB
C#
|
|
|||
|
namespace DesktopTools.BaseControls
|
|||
|
{
|
|||
|
partial class BaseControlImage
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
components = new System.ComponentModel.Container();
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.pictureBox = new System.Windows.Forms.PictureBox();
|
|||
|
this.buttonLoad = new System.Windows.Forms.Button();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
|
|||
|
//
|
|||
|
// buttonLoad
|
|||
|
//
|
|||
|
this.buttonLoad.Dock = System.Windows.Forms.DockStyle.Bottom;
|
|||
|
this.buttonLoad.Location = new System.Drawing.Point(74, 12);
|
|||
|
this.buttonLoad.Name = "buttonLoad";
|
|||
|
this.buttonLoad.Size = new System.Drawing.Size(25, 25);
|
|||
|
this.buttonLoad.TabIndex = 0;
|
|||
|
this.buttonLoad.Text = "Загрузить";
|
|||
|
this.buttonLoad.UseVisualStyleBackColor = true;
|
|||
|
//
|
|||
|
// pictureBox
|
|||
|
//
|
|||
|
this.pictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
|||
|
this.pictureBox.Location = new System.Drawing.Point(111, 19);
|
|||
|
this.pictureBox.Name = "pictureBox";
|
|||
|
this.pictureBox.Size = new System.Drawing.Size(100, 50);
|
|||
|
this.pictureBox.TabIndex = 0;
|
|||
|
this.pictureBox.TabStop = false;
|
|||
|
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.Button buttonLoad;
|
|||
|
private System.Windows.Forms.PictureBox pictureBox;
|
|||
|
}
|
|||
|
}
|