PIbd-32_Bulatova_K.R._COP_10/COP/BulatovaComponents/Components/MailControl.Designer.cs

68 lines
2.7 KiB
C#
Raw Normal View History

2024-10-29 09:22:02 +04:00
namespace BulatovaComponents.Components
{
partial class MailControl
{
/// <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.textBoxMail = new System.Windows.Forms.TextBox();
this.toolTipEmail = new System.Windows.Forms.ToolTip(this.components);
this.SuspendLayout();
//
// textBoxMail
//
this.textBoxMail.Location = new System.Drawing.Point(3, 3);
this.textBoxMail.Name = "textBoxMail";
this.textBoxMail.Size = new System.Drawing.Size(257, 27);
this.textBoxMail.TabIndex = 0;
this.textBoxMail.TextChanged += new System.EventHandler(this.textBoxMail_TextChanged);
this.textBoxMail.MouseEnter += new System.EventHandler(this.textBoxMail_MouseEnter);
//
// toolTipEmail
//
this.toolTipEmail.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info;
this.toolTipEmail.ToolTipTitle = "Пример ввода";
//
// MailControl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.textBoxMail);
this.Name = "MailControl";
this.Size = new System.Drawing.Size(264, 34);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private TextBox textBoxMail;
private ToolTip toolTipEmail;
}
}