75 lines
2.5 KiB
C#
75 lines
2.5 KiB
C#
namespace WinFormsLibrary
|
||
{
|
||
partial class EmailTextBox
|
||
{
|
||
/// <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.textBoxEmail = new System.Windows.Forms.TextBox();
|
||
this.toolTipEmail = new System.Windows.Forms.ToolTip(this.components);
|
||
this.labelEmail = new System.Windows.Forms.Label();
|
||
this.SuspendLayout();
|
||
//
|
||
// textBoxEmail
|
||
//
|
||
this.textBoxEmail.Location = new System.Drawing.Point(0, 55);
|
||
this.textBoxEmail.Name = "textBoxEmail";
|
||
this.textBoxEmail.Size = new System.Drawing.Size(209, 31);
|
||
this.textBoxEmail.TabIndex = 0;
|
||
this.textBoxEmail.TextChanged += new System.EventHandler(this.textBoxEmail_TextChanged);
|
||
this.textBoxEmail.MouseEnter += new System.EventHandler(this.textBoxEmail_MouseEnter);
|
||
//
|
||
// labelEmail
|
||
//
|
||
this.labelEmail.AutoSize = true;
|
||
this.labelEmail.Location = new System.Drawing.Point(3, 6);
|
||
this.labelEmail.Name = "labelEmail";
|
||
this.labelEmail.Size = new System.Drawing.Size(62, 25);
|
||
this.labelEmail.TabIndex = 1;
|
||
this.labelEmail.Text = "Почта";
|
||
//
|
||
// EmailTextBox
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 25F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.Controls.Add(this.labelEmail);
|
||
this.Controls.Add(this.textBoxEmail);
|
||
this.Name = "EmailTextBox";
|
||
this.Size = new System.Drawing.Size(185, 86);
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private TextBox textBoxEmail;
|
||
private ToolTip toolTipEmail;
|
||
private Label labelEmail;
|
||
}
|
||
}
|