KOP-PIbd-32-Katysheva-N-E/ComponentsView/FormComponents.Designer.cs
2024-09-30 20:39:14 +04:00

127 lines
4.2 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();
buttonGetListSelectedItem = new Button();
SuspendLayout();
//
// imageLoad
//
imageLoad.Avatar = null;
imageLoad.BorderStyle = BorderStyle.FixedSingle;
imageLoad.Location = new Point(12, 12);
imageLoad.Name = "imageLoad";
imageLoad.Size = new Size(147, 92);
imageLoad.TabIndex = 0;
imageLoad.AvatarChanged += ImageLoad_AvatarChanged;
//
// visualSelectionComponent1
//
visualSelectionComponent1.BorderStyle = BorderStyle.FixedSingle;
visualSelectionComponent1.comboBoxSelectedValue = "";
visualSelectionComponent1.Location = new Point(181, 12);
visualSelectionComponent1.Name = "visualSelectionComponent1";
visualSelectionComponent1.Size = new Size(156, 92);
visualSelectionComponent1.TabIndex = 1;
visualSelectionComponent1.ChangeComboBox += visualSelectionComponent1_ChangeComboBox;
//
// emailComponent
//
emailComponent.BorderStyle = BorderStyle.FixedSingle;
emailComponent.EmailPattern = null;
emailComponent.Location = new Point(356, 12);
emailComponent.Name = "emailComponent";
emailComponent.Size = new Size(172, 92);
emailComponent.TabIndex = 2;
emailComponent.ChangeEmail += emailComponent_ChangeEmail;
//
// buttonCheckEmail
//
buttonCheckEmail.Location = new Point(374, 66);
buttonCheckEmail.Name = "buttonCheckEmail";
buttonCheckEmail.Size = new Size(136, 23);
buttonCheckEmail.TabIndex = 3;
buttonCheckEmail.Text = "Проверить email";
buttonCheckEmail.UseVisualStyleBackColor = true;
buttonCheckEmail.Click += buttonCheckEmail_Click;
//
// listBoxValues
//
listBoxValues.BorderStyle = BorderStyle.FixedSingle;
listBoxValues.Location = new Point(12, 110);
listBoxValues.Name = "listBoxValues";
listBoxValues.SelectedIndex = -1;
listBoxValues.Size = new Size(516, 224);
listBoxValues.TabIndex = 4;
listBoxValues.GetObject += listBoxValues_GetObject;
listBoxValues.Load += listBoxValues_Load;
//
// buttonGetListSelectedItem
//
buttonGetListSelectedItem.Location = new Point(12, 341);
buttonGetListSelectedItem.Name = "buttonGetListSelectedItem";
buttonGetListSelectedItem.Size = new Size(133, 23);
buttonGetListSelectedItem.TabIndex = 5;
buttonGetListSelectedItem.Text = "Получить объект";
buttonGetListSelectedItem.UseVisualStyleBackColor = true;
//
// FormComponents
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(551, 376);
Controls.Add(buttonGetListSelectedItem);
Controls.Add(listBoxValues);
Controls.Add(buttonCheckEmail);
Controls.Add(emailComponent);
Controls.Add(visualSelectionComponent1);
Controls.Add(imageLoad);
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;
private Button buttonGetListSelectedItem;
}
}