111 lines
3.8 KiB
C#
111 lines
3.8 KiB
C#
|
namespace TestApp
|
|||
|
{
|
|||
|
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()
|
|||
|
{
|
|||
|
customComboBox = new Components.CustomComboBox();
|
|||
|
buttonAdd = new Button();
|
|||
|
buttonClear = new Button();
|
|||
|
buttonGet = new Button();
|
|||
|
customTextBox = new Components.CustomTextBox();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// customComboBox
|
|||
|
//
|
|||
|
customComboBox.BorderStyle = BorderStyle.FixedSingle;
|
|||
|
customComboBox.Location = new Point(0, 0);
|
|||
|
customComboBox.Name = "customComboBox";
|
|||
|
customComboBox.SelectedItem = "";
|
|||
|
customComboBox.Size = new Size(252, 91);
|
|||
|
customComboBox.TabIndex = 0;
|
|||
|
customComboBox.ValueChangedEvent += customComboBox_ValueChanged;
|
|||
|
//
|
|||
|
// buttonAdd
|
|||
|
//
|
|||
|
buttonAdd.Location = new Point(12, 97);
|
|||
|
buttonAdd.Name = "buttonAdd";
|
|||
|
buttonAdd.Size = new Size(94, 29);
|
|||
|
buttonAdd.TabIndex = 1;
|
|||
|
buttonAdd.Text = "Add";
|
|||
|
buttonAdd.UseVisualStyleBackColor = true;
|
|||
|
buttonAdd.Click += buttonAdd_Click;
|
|||
|
//
|
|||
|
// buttonClear
|
|||
|
//
|
|||
|
buttonClear.Location = new Point(12, 132);
|
|||
|
buttonClear.Name = "buttonClear";
|
|||
|
buttonClear.Size = new Size(94, 29);
|
|||
|
buttonClear.TabIndex = 2;
|
|||
|
buttonClear.Text = "Clear";
|
|||
|
buttonClear.UseVisualStyleBackColor = true;
|
|||
|
buttonClear.Click += buttonClear_Click;
|
|||
|
//
|
|||
|
// buttonGet
|
|||
|
//
|
|||
|
buttonGet.Location = new Point(12, 167);
|
|||
|
buttonGet.Name = "buttonGet";
|
|||
|
buttonGet.Size = new Size(94, 29);
|
|||
|
buttonGet.TabIndex = 3;
|
|||
|
buttonGet.Text = "Get";
|
|||
|
buttonGet.UseVisualStyleBackColor = true;
|
|||
|
buttonGet.Click += buttonGet_Click;
|
|||
|
//
|
|||
|
// customTextBox
|
|||
|
//
|
|||
|
customTextBox.Location = new Point(258, 0);
|
|||
|
customTextBox.Name = "customTextBox";
|
|||
|
customTextBox.numberPattern = null;
|
|||
|
customTextBox.Size = new Size(258, 88);
|
|||
|
customTextBox.TabIndex = 4;
|
|||
|
customTextBox.ValueChangedEvent += customTextBox_ValueChanged;
|
|||
|
//
|
|||
|
// Form1
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(800, 450);
|
|||
|
Controls.Add(customTextBox);
|
|||
|
Controls.Add(buttonGet);
|
|||
|
Controls.Add(buttonClear);
|
|||
|
Controls.Add(buttonAdd);
|
|||
|
Controls.Add(customComboBox);
|
|||
|
Name = "Form1";
|
|||
|
Text = "Form1";
|
|||
|
ResumeLayout(false);
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private Components.CustomComboBox customComboBox;
|
|||
|
private Button buttonAdd;
|
|||
|
private Button buttonClear;
|
|||
|
private Button buttonGet;
|
|||
|
private Components.CustomTextBox customTextBox;
|
|||
|
}
|
|||
|
}
|