121 lines
4.7 KiB
C#
121 lines
4.7 KiB
C#
namespace ComponentsLab
|
|
{
|
|
partial class FormComponents
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
|
|
imageLoad = new ImageLoad();
|
|
visualSelectionComponent1 = new VisualSelectionComponent();
|
|
emailComponent = new ComponentsLibrary.Email();
|
|
buttonCheckEmail = new Button();
|
|
listBoxValues = new ComponentsLibrary.ListBoxValues();
|
|
SuspendLayout();
|
|
//
|
|
// imageLoad
|
|
//
|
|
imageLoad.Avatar = null;
|
|
imageLoad.BorderStyle = BorderStyle.FixedSingle;
|
|
imageLoad.Location = new Point(14, 16);
|
|
imageLoad.Margin = new Padding(3, 5, 3, 5);
|
|
imageLoad.Name = "imageLoad";
|
|
imageLoad.Size = new Size(168, 122);
|
|
imageLoad.TabIndex = 0;
|
|
imageLoad.AvatarChanged += ImageLoad_AvatarChanged;
|
|
//
|
|
// visualSelectionComponent1
|
|
//
|
|
visualSelectionComponent1.BorderStyle = BorderStyle.FixedSingle;
|
|
visualSelectionComponent1.comboBoxSelectedValue = "";
|
|
visualSelectionComponent1.Location = new Point(207, 16);
|
|
visualSelectionComponent1.Margin = new Padding(3, 5, 3, 5);
|
|
visualSelectionComponent1.Name = "visualSelectionComponent1";
|
|
visualSelectionComponent1.Size = new Size(178, 122);
|
|
visualSelectionComponent1.TabIndex = 1;
|
|
visualSelectionComponent1.ChangeComboBox += visualSelectionComponent1_ChangeComboBox;
|
|
//
|
|
// emailComponent
|
|
//
|
|
emailComponent.BorderStyle = BorderStyle.FixedSingle;
|
|
emailComponent.EmailPattern = null;
|
|
emailComponent.Location = new Point(407, 16);
|
|
emailComponent.Margin = new Padding(3, 5, 3, 5);
|
|
emailComponent.Name = "emailComponent";
|
|
emailComponent.Size = new Size(196, 122);
|
|
emailComponent.TabIndex = 2;
|
|
emailComponent.ChangeEmail += emailComponent_ChangeEmail;
|
|
//
|
|
// buttonCheckEmail
|
|
//
|
|
buttonCheckEmail.Location = new Point(427, 88);
|
|
buttonCheckEmail.Margin = new Padding(3, 4, 3, 4);
|
|
buttonCheckEmail.Name = "buttonCheckEmail";
|
|
buttonCheckEmail.Size = new Size(155, 31);
|
|
buttonCheckEmail.TabIndex = 3;
|
|
buttonCheckEmail.Text = "Проверить email";
|
|
buttonCheckEmail.UseVisualStyleBackColor = true;
|
|
buttonCheckEmail.Click += buttonCheckEmail_Click;
|
|
//
|
|
// listBoxValues
|
|
//
|
|
listBoxValues.BorderStyle = BorderStyle.FixedSingle;
|
|
listBoxValues.Location = new Point(14, 147);
|
|
listBoxValues.Margin = new Padding(3, 5, 3, 5);
|
|
listBoxValues.Name = "listBoxValues";
|
|
listBoxValues.SelectedIndex = -1;
|
|
listBoxValues.Size = new Size(589, 298);
|
|
listBoxValues.TabIndex = 4;
|
|
listBoxValues.GetObject += listBoxValues_GetObject;
|
|
listBoxValues.Load += listBoxValues_Load;
|
|
//
|
|
// FormComponents
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(630, 501);
|
|
Controls.Add(listBoxValues);
|
|
Controls.Add(buttonCheckEmail);
|
|
Controls.Add(emailComponent);
|
|
Controls.Add(visualSelectionComponent1);
|
|
Controls.Add(imageLoad);
|
|
Margin = new Padding(3, 4, 3, 4);
|
|
Name = "FormComponents";
|
|
Text = "FormComponents";
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.ComponentModel.BackgroundWorker backgroundWorker1;
|
|
private ComponentsLab.ImageLoad imageLoad;
|
|
private ComponentsLab.VisualSelectionComponent visualSelectionComponent1;
|
|
private ComponentsLibrary.Email emailComponent;
|
|
private Button buttonCheckEmail;
|
|
private ComponentsLibrary.ListBoxValues listBoxValues;
|
|
}
|
|
}
|