63 lines
2.4 KiB
C#
63 lines
2.4 KiB
C#
namespace COPWinForms
|
||
{
|
||
partial class ComponentTBox
|
||
{
|
||
/// <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()
|
||
{
|
||
this.components = new System.ComponentModel.Container();
|
||
this.textBox = new System.Windows.Forms.TextBox();
|
||
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
|
||
this.SuspendLayout();
|
||
//
|
||
// textBox
|
||
//
|
||
this.textBox.Location = new System.Drawing.Point(0, 0);
|
||
this.textBox.Name = "textBox";
|
||
this.textBox.Size = new System.Drawing.Size(150, 27);
|
||
this.textBox.TabIndex = 0;
|
||
this.textBox.TextChanged += new System.EventHandler(this.textBox_TextChanged);
|
||
this.textBox.Enter += new System.EventHandler(this.textBox_Enter);
|
||
//
|
||
// ComponentTBox
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.Controls.Add(this.textBox);
|
||
this.Name = "ComponentTBox";
|
||
this.Size = new System.Drawing.Size(150, 51);
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private TextBox textBox;
|
||
private ToolTip toolTip1;
|
||
}
|
||
}
|