257 lines
7.9 KiB
C#
257 lines
7.9 KiB
C#
namespace LibraryView
|
|
{
|
|
partial class FormLibrary
|
|
{
|
|
/// <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()
|
|
{
|
|
dropDownList = new CustomComponents.DropDownList();
|
|
buttonAdd = new Button();
|
|
buttonShowElement = new Button();
|
|
labelShow = new Label();
|
|
buttonClear = new Button();
|
|
dateTextBox1 = new CustomComponents.DateTextBox();
|
|
groupBoxFirst = new GroupBox();
|
|
groupBoxSecond = new GroupBox();
|
|
labelShowTB = new Label();
|
|
buttonShowTextBox = new Button();
|
|
buttonSetExample = new Button();
|
|
labelExample = new Label();
|
|
textBoxExample = new TextBox();
|
|
listBoxObjects1 = new CustomComponents.ListBoxObjects();
|
|
buttonAddObjects = new Button();
|
|
buttonShowItem = new Button();
|
|
labelShowInput = new Label();
|
|
groupBoxFirst.SuspendLayout();
|
|
groupBoxSecond.SuspendLayout();
|
|
SuspendLayout();
|
|
//
|
|
// dropDownList
|
|
//
|
|
dropDownList.Location = new Point(51, 34);
|
|
dropDownList.Name = "dropDownList";
|
|
dropDownList.Selected = "";
|
|
dropDownList.Size = new Size(180, 100);
|
|
dropDownList.TabIndex = 0;
|
|
//
|
|
// buttonAdd
|
|
//
|
|
buttonAdd.Location = new Point(27, 156);
|
|
buttonAdd.Name = "buttonAdd";
|
|
buttonAdd.Size = new Size(94, 52);
|
|
buttonAdd.TabIndex = 1;
|
|
buttonAdd.Text = "Добавить";
|
|
buttonAdd.UseVisualStyleBackColor = true;
|
|
buttonAdd.Click += buttonAdd_Click;
|
|
//
|
|
// buttonShowElement
|
|
//
|
|
buttonShowElement.Location = new Point(88, 288);
|
|
buttonShowElement.Name = "buttonShowElement";
|
|
buttonShowElement.Size = new Size(94, 29);
|
|
buttonShowElement.TabIndex = 2;
|
|
buttonShowElement.Text = "Проверка";
|
|
buttonShowElement.UseVisualStyleBackColor = true;
|
|
buttonShowElement.Click += buttonShowElement_Click;
|
|
//
|
|
// labelShow
|
|
//
|
|
labelShow.AutoSize = true;
|
|
labelShow.Location = new Point(60, 245);
|
|
labelShow.Name = "labelShow";
|
|
labelShow.Size = new Size(157, 20);
|
|
labelShow.TabIndex = 3;
|
|
labelShow.Text = "Выбранный элемент:";
|
|
//
|
|
// buttonClear
|
|
//
|
|
buttonClear.Location = new Point(158, 156);
|
|
buttonClear.Name = "buttonClear";
|
|
buttonClear.Size = new Size(92, 52);
|
|
buttonClear.TabIndex = 4;
|
|
buttonClear.Text = "Очистить";
|
|
buttonClear.UseVisualStyleBackColor = true;
|
|
buttonClear.Click += buttonClear_Click;
|
|
//
|
|
// dateTextBox1
|
|
//
|
|
dateTextBox1.Location = new Point(55, 34);
|
|
dateTextBox1.Name = "dateTextBox1";
|
|
dateTextBox1.Pattern = null;
|
|
dateTextBox1.Size = new Size(148, 115);
|
|
dateTextBox1.TabIndex = 5;
|
|
//
|
|
// groupBoxFirst
|
|
//
|
|
groupBoxFirst.Controls.Add(dropDownList);
|
|
groupBoxFirst.Controls.Add(buttonAdd);
|
|
groupBoxFirst.Controls.Add(buttonShowElement);
|
|
groupBoxFirst.Controls.Add(labelShow);
|
|
groupBoxFirst.Controls.Add(buttonClear);
|
|
groupBoxFirst.Location = new Point(12, 18);
|
|
groupBoxFirst.Name = "groupBoxFirst";
|
|
groupBoxFirst.Size = new Size(305, 420);
|
|
groupBoxFirst.TabIndex = 6;
|
|
groupBoxFirst.TabStop = false;
|
|
//
|
|
// groupBoxSecond
|
|
//
|
|
groupBoxSecond.Controls.Add(labelShowTB);
|
|
groupBoxSecond.Controls.Add(buttonShowTextBox);
|
|
groupBoxSecond.Controls.Add(buttonSetExample);
|
|
groupBoxSecond.Controls.Add(labelExample);
|
|
groupBoxSecond.Controls.Add(textBoxExample);
|
|
groupBoxSecond.Controls.Add(dateTextBox1);
|
|
groupBoxSecond.Location = new Point(323, 18);
|
|
groupBoxSecond.Name = "groupBoxSecond";
|
|
groupBoxSecond.Size = new Size(250, 420);
|
|
groupBoxSecond.TabIndex = 5;
|
|
groupBoxSecond.TabStop = false;
|
|
//
|
|
// labelShowTB
|
|
//
|
|
labelShowTB.AutoSize = true;
|
|
labelShowTB.Location = new Point(87, 152);
|
|
labelShowTB.Name = "labelShowTB";
|
|
labelShowTB.Size = new Size(81, 20);
|
|
labelShowTB.TabIndex = 10;
|
|
labelShowTB.Text = "Проверка:";
|
|
//
|
|
// buttonShowTextBox
|
|
//
|
|
buttonShowTextBox.Location = new Point(77, 175);
|
|
buttonShowTextBox.Name = "buttonShowTextBox";
|
|
buttonShowTextBox.Size = new Size(100, 29);
|
|
buttonShowTextBox.TabIndex = 9;
|
|
buttonShowTextBox.Text = "Проверка";
|
|
buttonShowTextBox.UseVisualStyleBackColor = true;
|
|
buttonShowTextBox.Click += buttonShowTextBox_Click;
|
|
//
|
|
// buttonSetExample
|
|
//
|
|
buttonSetExample.Location = new Point(29, 310);
|
|
buttonSetExample.Name = "buttonSetExample";
|
|
buttonSetExample.Size = new Size(188, 29);
|
|
buttonSetExample.TabIndex = 8;
|
|
buttonSetExample.Text = "Поменять пример";
|
|
buttonSetExample.UseVisualStyleBackColor = true;
|
|
buttonSetExample.Click += buttonSetExample_Click;
|
|
//
|
|
// labelExample
|
|
//
|
|
labelExample.AutoSize = true;
|
|
labelExample.Location = new Point(64, 254);
|
|
labelExample.Name = "labelExample";
|
|
labelExample.Size = new Size(113, 20);
|
|
labelExample.TabIndex = 7;
|
|
labelExample.Text = "Ввод примера:";
|
|
//
|
|
// textBoxExample
|
|
//
|
|
textBoxExample.Location = new Point(29, 277);
|
|
textBoxExample.Name = "textBoxExample";
|
|
textBoxExample.Size = new Size(188, 27);
|
|
textBoxExample.TabIndex = 6;
|
|
//
|
|
// listBoxObjects1
|
|
//
|
|
listBoxObjects1.Location = new Point(612, 31);
|
|
listBoxObjects1.Name = "listBoxObjects1";
|
|
listBoxObjects1.SelectedIndex = -1;
|
|
listBoxObjects1.Size = new Size(458, 195);
|
|
listBoxObjects1.TabIndex = 7;
|
|
//
|
|
// buttonAddObjects
|
|
//
|
|
buttonAddObjects.Location = new Point(659, 232);
|
|
buttonAddObjects.Name = "buttonAddObjects";
|
|
buttonAddObjects.Size = new Size(380, 29);
|
|
buttonAddObjects.TabIndex = 8;
|
|
buttonAddObjects.Text = "Добавить";
|
|
buttonAddObjects.UseVisualStyleBackColor = true;
|
|
buttonAddObjects.Click += buttonAddObjects_Click;
|
|
//
|
|
// buttonShowItem
|
|
//
|
|
buttonShowItem.Location = new Point(659, 363);
|
|
buttonShowItem.Name = "buttonShowItem";
|
|
buttonShowItem.Size = new Size(380, 29);
|
|
buttonShowItem.TabIndex = 9;
|
|
buttonShowItem.Text = "Получить";
|
|
buttonShowItem.UseVisualStyleBackColor = true;
|
|
buttonShowItem.Click += buttonShowItem_Click;
|
|
//
|
|
// labelShowInput
|
|
//
|
|
labelShowInput.AutoSize = true;
|
|
labelShowInput.Location = new Point(659, 326);
|
|
labelShowInput.Name = "labelShowInput";
|
|
labelShowInput.Size = new Size(54, 20);
|
|
labelShowInput.TabIndex = 10;
|
|
labelShowInput.Text = "Вывод";
|
|
//
|
|
// FormLibrary
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(1082, 450);
|
|
Controls.Add(labelShowInput);
|
|
Controls.Add(buttonShowItem);
|
|
Controls.Add(buttonAddObjects);
|
|
Controls.Add(listBoxObjects1);
|
|
Controls.Add(groupBoxSecond);
|
|
Controls.Add(groupBoxFirst);
|
|
Name = "FormLibrary";
|
|
Text = "TestForm";
|
|
groupBoxFirst.ResumeLayout(false);
|
|
groupBoxFirst.PerformLayout();
|
|
groupBoxSecond.ResumeLayout(false);
|
|
groupBoxSecond.PerformLayout();
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private CustomComponents.DropDownList dropDownList;
|
|
private Button buttonAdd;
|
|
private Button buttonShowElement;
|
|
private Label labelShow;
|
|
private Button buttonClear;
|
|
private CustomComponents.DateTextBox dateTextBox1;
|
|
private GroupBox groupBoxFirst;
|
|
private GroupBox groupBoxSecond;
|
|
private TextBox textBoxExample;
|
|
private Label labelExample;
|
|
private Button buttonSetExample;
|
|
private Label labelShowTB;
|
|
private Button buttonShowTextBox;
|
|
private CustomComponents.ListBoxObjects listBoxObjects1;
|
|
private Button buttonAddObjects;
|
|
private Button buttonShowItem;
|
|
private Label labelShowInput;
|
|
}
|
|
} |