2021-03-30 22:34:31 +04:00
|
|
|
|
|
2021-04-01 21:30:29 +04:00
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
2022-03-18 22:48:14 +04:00
|
|
|
|
namespace ToolsDesktop.BaseControls
|
2021-03-30 22:34:31 +04:00
|
|
|
|
{
|
|
|
|
|
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;
|
2021-04-01 21:30:29 +04:00
|
|
|
|
this.pictureBox.SizeMode = PictureBoxSizeMode.Zoom;
|
2021-03-30 22:34:31 +04:00
|
|
|
|
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
private System.Windows.Forms.Button buttonLoad;
|
|
|
|
|
private System.Windows.Forms.PictureBox pictureBox;
|
|
|
|
|
}
|
|
|
|
|
}
|