71 lines
2.5 KiB
C#
71 lines
2.5 KiB
C#
|
||
namespace ToolsDesktop.BaseControls
|
||
{
|
||
partial class BaseControlGuid
|
||
{
|
||
/// <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.buttonClear = new System.Windows.Forms.Button();
|
||
this.buttonSelect = new System.Windows.Forms.Button();
|
||
this.textBox = new System.Windows.Forms.TextBox();
|
||
//
|
||
// buttonClear
|
||
//
|
||
this.buttonClear.BackgroundImage = global::ToolsDesktop.Properties.Resources.Clear;
|
||
this.buttonClear.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
||
this.buttonClear.Dock = System.Windows.Forms.DockStyle.Right;
|
||
this.buttonClear.Location = new System.Drawing.Point(74, 12);
|
||
this.buttonClear.Name = "buttonClear";
|
||
this.buttonClear.Size = new System.Drawing.Size(25, 25);
|
||
this.buttonClear.TabIndex = 0;
|
||
this.buttonClear.Text = "...";
|
||
this.buttonClear.UseVisualStyleBackColor = true;
|
||
//
|
||
// buttonSelect
|
||
//
|
||
this.buttonSelect.Dock = System.Windows.Forms.DockStyle.Right;
|
||
this.buttonSelect.Location = new System.Drawing.Point(74, 12);
|
||
this.buttonSelect.Name = "buttonSelect";
|
||
this.buttonSelect.Size = new System.Drawing.Size(25, 25);
|
||
this.buttonSelect.TabIndex = 0;
|
||
this.buttonSelect.Text = "...";
|
||
this.buttonSelect.UseVisualStyleBackColor = true;
|
||
//
|
||
// textBox
|
||
//
|
||
this.textBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
||
this.textBox.Location = new System.Drawing.Point(0, 0);
|
||
this.textBox.Name = "textBox";
|
||
this.textBox.Size = new System.Drawing.Size(1000, 1000);
|
||
this.textBox.TabIndex = 1;
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.Button buttonSelect;
|
||
private System.Windows.Forms.Button buttonClear;
|
||
private System.Windows.Forms.TextBox textBox;
|
||
}
|
||
}
|