60 lines
1.9 KiB
C#
60 lines
1.9 KiB
C#
namespace VisualComponentsLib
|
||
{
|
||
partial class MyEmailTextBox
|
||
{
|
||
/// <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.emailTextBox = new System.Windows.Forms.TextBox();
|
||
this.SuspendLayout();
|
||
//
|
||
// emailTextBox
|
||
//
|
||
this.emailTextBox.Location = new System.Drawing.Point(3, 3);
|
||
this.emailTextBox.Name = "emailTextBox";
|
||
this.emailTextBox.Size = new System.Drawing.Size(170, 22);
|
||
this.emailTextBox.TabIndex = 0;
|
||
this.emailTextBox.TextChanged += new System.EventHandler(this.textBox_TextChanged);
|
||
this.emailTextBox.Enter += new System.EventHandler(this.textBox_Enter);
|
||
//
|
||
// MyEmailTextBox
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.Controls.Add(this.emailTextBox);
|
||
this.Name = "MyEmailTextBox";
|
||
this.Size = new System.Drawing.Size(177, 30);
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.TextBox emailTextBox;
|
||
}
|
||
}
|