COP_labs/Test App/Form1.Designer.cs

211 lines
7.8 KiB
C#
Raw Normal View History

namespace Test_App
{
partial class Form1
{
/// <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()
{
components = new System.ComponentModel.Container();
dropDownList = new Labs.DropDownList();
mailTextBox = new Labs.MailTextBox();
buttonClear = new Button();
buttonSelected = new Button();
label1 = new Label();
buttonCheck = new Button();
buttonHint = new Button();
textBoxHint = new TextBox();
buttonFill = new Button();
buttonGetObject = new Button();
objectsListBox = new Labs.ObjectsListBox();
labelWorker = new Label();
buttonList = new Button();
wordBigText1 = new Labs.WordBigText(components);
SuspendLayout();
//
// dropDownList
//
dropDownList.AutoSize = true;
dropDownList.Location = new Point(12, 12);
dropDownList.Name = "dropDownList";
dropDownList.SelectedLine = "";
dropDownList.Size = new Size(306, 46);
dropDownList.TabIndex = 0;
//
// mailTextBox
//
mailTextBox.AutoSize = true;
mailTextBox.Location = new Point(2, 179);
mailTextBox.Name = "mailTextBox";
mailTextBox.Size = new Size(316, 38);
mailTextBox.TabIndex = 1;
mailTextBox.Template = null;
//
// buttonClear
//
buttonClear.Location = new Point(11, 100);
buttonClear.Name = "buttonClear";
buttonClear.Size = new Size(94, 29);
buttonClear.TabIndex = 3;
buttonClear.Text = "Очистить";
buttonClear.UseVisualStyleBackColor = true;
buttonClear.Click += buttonClear_Click;
//
// buttonSelected
//
buttonSelected.Location = new Point(112, 83);
buttonSelected.Name = "buttonSelected";
buttonSelected.Size = new Size(179, 29);
buttonSelected.TabIndex = 4;
buttonSelected.Text = "Выбранный элемент:";
buttonSelected.UseVisualStyleBackColor = true;
buttonSelected.Click += buttonSelected_Click;
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(297, 87);
label1.Name = "label1";
label1.Size = new Size(154, 20);
label1.TabIndex = 5;
label1.Text = "Выбранный элемент";
//
// buttonCheck
//
buttonCheck.Location = new Point(46, 223);
buttonCheck.Name = "buttonCheck";
buttonCheck.Size = new Size(154, 29);
buttonCheck.TabIndex = 6;
buttonCheck.Text = "Проверить почту";
buttonCheck.UseVisualStyleBackColor = true;
buttonCheck.Click += buttonCheck_Click;
//
// buttonHint
//
buttonHint.Location = new Point(47, 313);
buttonHint.Name = "buttonHint";
buttonHint.Size = new Size(154, 51);
buttonHint.TabIndex = 7;
buttonHint.Text = "Задать подсказку для почты";
buttonHint.UseVisualStyleBackColor = true;
buttonHint.Click += buttonHint_Click;
//
// textBoxHint
//
textBoxHint.Location = new Point(33, 280);
textBoxHint.Name = "textBoxHint";
textBoxHint.Size = new Size(188, 27);
textBoxHint.TabIndex = 8;
//
// buttonFill
//
buttonFill.Location = new Point(701, 255);
buttonFill.Name = "buttonFill";
buttonFill.Size = new Size(94, 29);
buttonFill.TabIndex = 9;
buttonFill.Text = "Заполнить";
buttonFill.UseVisualStyleBackColor = true;
buttonFill.Click += buttonFill_Click;
//
// buttonGetObject
//
buttonGetObject.Location = new Point(663, 329);
buttonGetObject.Name = "buttonGetObject";
buttonGetObject.Size = new Size(175, 29);
buttonGetObject.TabIndex = 10;
buttonGetObject.Text = "Получить сотрудника:";
buttonGetObject.UseVisualStyleBackColor = true;
buttonGetObject.Click += buttonGetObject_Click;
//
// objectsListBox
//
objectsListBox.AutoSize = true;
objectsListBox.Location = new Point(466, 12);
objectsListBox.Name = "objectsListBox";
objectsListBox.SelectedIndex = -1;
objectsListBox.Size = new Size(597, 237);
objectsListBox.TabIndex = 11;
//
// labelWorker
//
labelWorker.AutoSize = true;
labelWorker.Location = new Point(663, 378);
labelWorker.Name = "labelWorker";
labelWorker.Size = new Size(168, 20);
labelWorker.TabIndex = 12;
labelWorker.Text = "Выбранный сотрудник";
//
// buttonList
//
buttonList.Location = new Point(12, 64);
buttonList.Name = "buttonList";
buttonList.Size = new Size(94, 29);
buttonList.TabIndex = 13;
buttonList.Text = "Заполнить";
buttonList.UseVisualStyleBackColor = true;
buttonList.Click += buttonList_Click;
//
// Form1
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(1075, 620);
Controls.Add(buttonList);
Controls.Add(labelWorker);
Controls.Add(objectsListBox);
Controls.Add(buttonGetObject);
Controls.Add(buttonFill);
Controls.Add(textBoxHint);
Controls.Add(buttonHint);
Controls.Add(buttonCheck);
Controls.Add(label1);
Controls.Add(buttonSelected);
Controls.Add(buttonClear);
Controls.Add(mailTextBox);
Controls.Add(dropDownList);
Name = "Form1";
Text = "Form1";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Labs.DropDownList dropDownList;
private Labs.MailTextBox mailTextBox;
private Button buttonClear;
private Button buttonSelected;
private Label label1;
private Button buttonCheck;
private Button buttonHint;
private TextBox textBoxHint;
private Button buttonFill;
private Button buttonGetObject;
private Labs.ObjectsListBox objectsListBox;
private Label labelWorker;
private Button buttonList;
private Labs.WordBigText wordBigText1;
}
}