222 lines
7.2 KiB
C#
222 lines
7.2 KiB
C#
|
namespace Form1
|
|||
|
{
|
|||
|
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()
|
|||
|
{
|
|||
|
selectComponent = new YunusovComponentsLibrary.SelectedComponent();
|
|||
|
groupBoxSelect = new GroupBox();
|
|||
|
buttonGetSelected = new Button();
|
|||
|
buttonClear = new Button();
|
|||
|
textBox = new TextBox();
|
|||
|
buttonAdd = new Button();
|
|||
|
inputComponent = new YunusovComponentsLibrary.InputComponent();
|
|||
|
groupBoxInput = new GroupBox();
|
|||
|
buttonShowFloat = new Button();
|
|||
|
groupBoxListOutput = new GroupBox();
|
|||
|
buttonGetListOutput = new Button();
|
|||
|
buttonAddListOutput = new Button();
|
|||
|
buttonClearListOutput = new Button();
|
|||
|
listOutputComponent = new YunusovComponentsLibrary.ListOutputComponent();
|
|||
|
groupBoxSelect.SuspendLayout();
|
|||
|
groupBoxInput.SuspendLayout();
|
|||
|
groupBoxListOutput.SuspendLayout();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// selectComponent
|
|||
|
//
|
|||
|
selectComponent.Location = new Point(6, 32);
|
|||
|
selectComponent.Name = "selectComponent";
|
|||
|
selectComponent.SelectedItem = "";
|
|||
|
selectComponent.Size = new Size(164, 226);
|
|||
|
selectComponent.TabIndex = 0;
|
|||
|
//
|
|||
|
// groupBoxSelect
|
|||
|
//
|
|||
|
groupBoxSelect.Controls.Add(buttonGetSelected);
|
|||
|
groupBoxSelect.Controls.Add(buttonClear);
|
|||
|
groupBoxSelect.Controls.Add(textBox);
|
|||
|
groupBoxSelect.Controls.Add(buttonAdd);
|
|||
|
groupBoxSelect.Controls.Add(selectComponent);
|
|||
|
groupBoxSelect.Location = new Point(12, 1);
|
|||
|
groupBoxSelect.Name = "groupBoxSelect";
|
|||
|
groupBoxSelect.Size = new Size(302, 241);
|
|||
|
groupBoxSelect.TabIndex = 1;
|
|||
|
groupBoxSelect.TabStop = false;
|
|||
|
groupBoxSelect.Text = "Selected";
|
|||
|
//
|
|||
|
// buttonGetSelected
|
|||
|
//
|
|||
|
buttonGetSelected.Location = new Point(171, 192);
|
|||
|
buttonGetSelected.Name = "buttonGetSelected";
|
|||
|
buttonGetSelected.Size = new Size(125, 29);
|
|||
|
buttonGetSelected.TabIndex = 4;
|
|||
|
buttonGetSelected.Text = "Get selected";
|
|||
|
buttonGetSelected.UseVisualStyleBackColor = true;
|
|||
|
buttonGetSelected.Click += SelectComponent_ItemSelected;
|
|||
|
//
|
|||
|
// buttonClear
|
|||
|
//
|
|||
|
buttonClear.Location = new Point(171, 140);
|
|||
|
buttonClear.Name = "buttonClear";
|
|||
|
buttonClear.Size = new Size(125, 29);
|
|||
|
buttonClear.TabIndex = 3;
|
|||
|
buttonClear.Text = "Clear";
|
|||
|
buttonClear.UseVisualStyleBackColor = true;
|
|||
|
buttonClear.Click += buttonClearList_Click;
|
|||
|
//
|
|||
|
// textBox
|
|||
|
//
|
|||
|
textBox.Location = new Point(171, 41);
|
|||
|
textBox.Name = "textBox";
|
|||
|
textBox.Size = new Size(125, 27);
|
|||
|
textBox.TabIndex = 2;
|
|||
|
//
|
|||
|
// buttonAdd
|
|||
|
//
|
|||
|
buttonAdd.Location = new Point(171, 92);
|
|||
|
buttonAdd.Name = "buttonAdd";
|
|||
|
buttonAdd.Size = new Size(125, 29);
|
|||
|
buttonAdd.TabIndex = 1;
|
|||
|
buttonAdd.Text = "Add";
|
|||
|
buttonAdd.UseVisualStyleBackColor = true;
|
|||
|
buttonAdd.Click += buttonAdd_Click;
|
|||
|
//
|
|||
|
// inputComponent
|
|||
|
//
|
|||
|
inputComponent.Location = new Point(6, 26);
|
|||
|
inputComponent.Name = "inputComponent";
|
|||
|
inputComponent.Size = new Size(181, 49);
|
|||
|
inputComponent.TabIndex = 2;
|
|||
|
//
|
|||
|
// groupBoxInput
|
|||
|
//
|
|||
|
groupBoxInput.Controls.Add(buttonShowFloat);
|
|||
|
groupBoxInput.Controls.Add(inputComponent);
|
|||
|
groupBoxInput.Location = new Point(360, 1);
|
|||
|
groupBoxInput.Name = "groupBoxInput";
|
|||
|
groupBoxInput.Size = new Size(190, 241);
|
|||
|
groupBoxInput.TabIndex = 3;
|
|||
|
groupBoxInput.TabStop = false;
|
|||
|
groupBoxInput.Text = "Input";
|
|||
|
//
|
|||
|
// buttonShowFloat
|
|||
|
//
|
|||
|
buttonShowFloat.Location = new Point(45, 81);
|
|||
|
buttonShowFloat.Name = "buttonShowFloat";
|
|||
|
buttonShowFloat.Size = new Size(94, 29);
|
|||
|
buttonShowFloat.TabIndex = 4;
|
|||
|
buttonShowFloat.Text = "Show";
|
|||
|
buttonShowFloat.UseVisualStyleBackColor = true;
|
|||
|
buttonShowFloat.Click += buttonShowFloat_Click;
|
|||
|
//
|
|||
|
// groupBoxListOutput
|
|||
|
//
|
|||
|
groupBoxListOutput.Controls.Add(buttonGetListOutput);
|
|||
|
groupBoxListOutput.Controls.Add(buttonAddListOutput);
|
|||
|
groupBoxListOutput.Controls.Add(buttonClearListOutput);
|
|||
|
groupBoxListOutput.Controls.Add(listOutputComponent);
|
|||
|
groupBoxListOutput.Location = new Point(592, 1);
|
|||
|
groupBoxListOutput.Name = "groupBoxListOutput";
|
|||
|
groupBoxListOutput.Size = new Size(570, 241);
|
|||
|
groupBoxListOutput.TabIndex = 4;
|
|||
|
groupBoxListOutput.TabStop = false;
|
|||
|
groupBoxListOutput.Text = "ListOutput";
|
|||
|
//
|
|||
|
// buttonGetListOutput
|
|||
|
//
|
|||
|
buttonGetListOutput.Location = new Point(457, 143);
|
|||
|
buttonGetListOutput.Name = "buttonGetListOutput";
|
|||
|
buttonGetListOutput.Size = new Size(94, 29);
|
|||
|
buttonGetListOutput.TabIndex = 7;
|
|||
|
buttonGetListOutput.Text = "Get";
|
|||
|
buttonGetListOutput.UseVisualStyleBackColor = true;
|
|||
|
buttonGetListOutput.Click += buttonGetListOutput_Click;
|
|||
|
//
|
|||
|
// buttonAddListOutput
|
|||
|
//
|
|||
|
buttonAddListOutput.Location = new Point(457, 26);
|
|||
|
buttonAddListOutput.Name = "buttonAddListOutput";
|
|||
|
buttonAddListOutput.Size = new Size(94, 29);
|
|||
|
buttonAddListOutput.TabIndex = 6;
|
|||
|
buttonAddListOutput.Text = "Add";
|
|||
|
buttonAddListOutput.UseVisualStyleBackColor = true;
|
|||
|
buttonAddListOutput.Click += buttonAddListOutput_Click;
|
|||
|
//
|
|||
|
// buttonClearListOutput
|
|||
|
//
|
|||
|
buttonClearListOutput.Location = new Point(457, 81);
|
|||
|
buttonClearListOutput.Name = "buttonClearListOutput";
|
|||
|
buttonClearListOutput.Size = new Size(94, 29);
|
|||
|
buttonClearListOutput.TabIndex = 5;
|
|||
|
buttonClearListOutput.Text = "Clear";
|
|||
|
buttonClearListOutput.UseVisualStyleBackColor = true;
|
|||
|
buttonClearListOutput.Click += buttonClearListOutput_Click;
|
|||
|
//
|
|||
|
// listOutputComponent
|
|||
|
//
|
|||
|
listOutputComponent.Location = new Point(6, 26);
|
|||
|
listOutputComponent.Name = "listOutputComponent";
|
|||
|
listOutputComponent.SelectedRow = -1;
|
|||
|
listOutputComponent.Size = new Size(414, 204);
|
|||
|
listOutputComponent.TabIndex = 0;
|
|||
|
//
|
|||
|
// Form1
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(1174, 641);
|
|||
|
Controls.Add(groupBoxListOutput);
|
|||
|
Controls.Add(groupBoxInput);
|
|||
|
Controls.Add(groupBoxSelect);
|
|||
|
Name = "Form1";
|
|||
|
Text = "Form1";
|
|||
|
groupBoxSelect.ResumeLayout(false);
|
|||
|
groupBoxSelect.PerformLayout();
|
|||
|
groupBoxInput.ResumeLayout(false);
|
|||
|
groupBoxListOutput.ResumeLayout(false);
|
|||
|
ResumeLayout(false);
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private YunusovComponentsLibrary.SelectedComponent selectComponent;
|
|||
|
private GroupBox groupBoxSelect;
|
|||
|
private Button buttonGetSelected;
|
|||
|
private Button buttonClear;
|
|||
|
private TextBox textBox;
|
|||
|
private Button buttonAdd;
|
|||
|
private YunusovComponentsLibrary.InputComponent inputComponent;
|
|||
|
private GroupBox groupBoxInput;
|
|||
|
private Button buttonShowFloat;
|
|||
|
private GroupBox groupBoxListOutput;
|
|||
|
private YunusovComponentsLibrary.ListOutputComponent listOutputComponent;
|
|||
|
private Button buttonGetListOutput;
|
|||
|
private Button buttonAddListOutput;
|
|||
|
private Button buttonClearListOutput;
|
|||
|
}
|
|||
|
}
|