172 lines
6.7 KiB
C#
172 lines
6.7 KiB
C#
namespace Test
|
|
{
|
|
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()
|
|
{
|
|
customDataGridView1 = new KryukovLib.CustomDataGridView();
|
|
customListBox1 = new KryukovLib.CustomListBox();
|
|
dateBoxWithNull1 = new KryukovLib.DateBoxWithNull();
|
|
buttonClear = new Button();
|
|
buttonLoad = new Button();
|
|
buttonClearTable = new Button();
|
|
buttonTableAdd = new Button();
|
|
buttonGetValue = new Button();
|
|
buttonGetValueCheckBox = new Button();
|
|
buttonSetValueCheckBox = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// customDataGridView1
|
|
//
|
|
customDataGridView1.Location = new Point(480, 36);
|
|
customDataGridView1.Margin = new Padding(3, 4, 3, 4);
|
|
customDataGridView1.Name = "customDataGridView1";
|
|
customDataGridView1.Size = new Size(295, 231);
|
|
customDataGridView1.TabIndex = 0;
|
|
//
|
|
// customListBox1
|
|
//
|
|
customListBox1.Location = new Point(12, 13);
|
|
customListBox1.Margin = new Padding(3, 4, 3, 4);
|
|
customListBox1.Name = "customListBox1";
|
|
customListBox1.SelectedValue = "";
|
|
customListBox1.Size = new Size(283, 186);
|
|
customListBox1.TabIndex = 1;
|
|
//
|
|
// dateBoxWithNull1
|
|
//
|
|
dateBoxWithNull1.Location = new Point(33, 288);
|
|
dateBoxWithNull1.Name = "dateBoxWithNull1";
|
|
dateBoxWithNull1.Size = new Size(262, 34);
|
|
dateBoxWithNull1.TabIndex = 2;
|
|
dateBoxWithNull1.Value = null;
|
|
//
|
|
// buttonClear
|
|
//
|
|
buttonClear.Location = new Point(201, 206);
|
|
buttonClear.Name = "buttonClear";
|
|
buttonClear.Size = new Size(94, 29);
|
|
buttonClear.TabIndex = 3;
|
|
buttonClear.Text = "Clear List";
|
|
buttonClear.UseVisualStyleBackColor = true;
|
|
buttonClear.Click += buttonClear_Click;
|
|
//
|
|
// buttonLoad
|
|
//
|
|
buttonLoad.Location = new Point(12, 206);
|
|
buttonLoad.Name = "buttonLoad";
|
|
buttonLoad.Size = new Size(94, 29);
|
|
buttonLoad.TabIndex = 4;
|
|
buttonLoad.Text = "Load List";
|
|
buttonLoad.UseVisualStyleBackColor = true;
|
|
buttonLoad.Click += buttonLoad_Click;
|
|
//
|
|
// buttonClearTable
|
|
//
|
|
buttonClearTable.Location = new Point(480, 293);
|
|
buttonClearTable.Name = "buttonClearTable";
|
|
buttonClearTable.Size = new Size(94, 29);
|
|
buttonClearTable.TabIndex = 5;
|
|
buttonClearTable.Text = "Table clear";
|
|
buttonClearTable.UseVisualStyleBackColor = true;
|
|
buttonClearTable.Click += buttonClearTable_Click;
|
|
//
|
|
// buttonTableAdd
|
|
//
|
|
buttonTableAdd.Location = new Point(580, 293);
|
|
buttonTableAdd.Name = "buttonTableAdd";
|
|
buttonTableAdd.Size = new Size(94, 29);
|
|
buttonTableAdd.TabIndex = 6;
|
|
buttonTableAdd.Text = "Add Table";
|
|
buttonTableAdd.UseVisualStyleBackColor = true;
|
|
buttonTableAdd.Click += buttonTableAdd_Click;
|
|
//
|
|
// buttonGetValue
|
|
//
|
|
buttonGetValue.Location = new Point(681, 293);
|
|
buttonGetValue.Name = "buttonGetValue";
|
|
buttonGetValue.Size = new Size(94, 29);
|
|
buttonGetValue.TabIndex = 7;
|
|
buttonGetValue.Text = "Get Value";
|
|
buttonGetValue.UseVisualStyleBackColor = true;
|
|
buttonGetValue.Click += buttonGetValue_Click;
|
|
//
|
|
// buttonGetValueCheckBox
|
|
//
|
|
buttonGetValueCheckBox.Location = new Point(59, 328);
|
|
buttonGetValueCheckBox.Name = "buttonGetValueCheckBox";
|
|
buttonGetValueCheckBox.Size = new Size(182, 35);
|
|
buttonGetValueCheckBox.TabIndex = 8;
|
|
buttonGetValueCheckBox.Text = "Get value";
|
|
buttonGetValueCheckBox.UseVisualStyleBackColor = true;
|
|
buttonGetValueCheckBox.Click += buttonGetValueCheckBox_Click;
|
|
//
|
|
// buttonSetValueCheckBox
|
|
//
|
|
buttonSetValueCheckBox.Location = new Point(59, 369);
|
|
buttonSetValueCheckBox.Name = "buttonSetValueCheckBox";
|
|
buttonSetValueCheckBox.Size = new Size(182, 35);
|
|
buttonSetValueCheckBox.TabIndex = 9;
|
|
buttonSetValueCheckBox.Text = "Set value";
|
|
buttonSetValueCheckBox.UseVisualStyleBackColor = true;
|
|
buttonSetValueCheckBox.Click += buttonSetValueCheckBox_Click;
|
|
//
|
|
// Form1
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(800, 450);
|
|
Controls.Add(buttonSetValueCheckBox);
|
|
Controls.Add(buttonGetValueCheckBox);
|
|
Controls.Add(buttonGetValue);
|
|
Controls.Add(buttonTableAdd);
|
|
Controls.Add(buttonClearTable);
|
|
Controls.Add(buttonLoad);
|
|
Controls.Add(buttonClear);
|
|
Controls.Add(dateBoxWithNull1);
|
|
Controls.Add(customListBox1);
|
|
Controls.Add(customDataGridView1);
|
|
Name = "Form1";
|
|
Text = "Form1";
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private KryukovLib.CustomDataGridView customDataGridView1;
|
|
private KryukovLib.CustomListBox customListBox1;
|
|
private KryukovLib.DateBoxWithNull dateBoxWithNull1;
|
|
private Button buttonClear;
|
|
private Button buttonLoad;
|
|
private Button buttonClearTable;
|
|
private Button buttonTableAdd;
|
|
private Button buttonGetValue;
|
|
private Button buttonGetValueCheckBox;
|
|
private Button buttonSetValueCheckBox;
|
|
}
|
|
}
|