PIbd-31_Alekseev.I.S._COP_3/Forms/MainForm.Designer.cs
Иван Алексеев 1128ffdc1a сдано
2024-09-21 17:41:05 +04:00

180 lines
6.3 KiB
C#

namespace Forms
{
partial class MainForm
{
/// <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()
{
customListBox1 = new FormLibrary.CustomListBox();
button1 = new Button();
button2 = new Button();
integerInputControl1 = new FormLibrary.IntegerInputControl();
button3 = new Button();
button4 = new Button();
textBox1 = new TextBox();
valueTableControl1 = new FormLibrary.ValueTableControl();
button5 = new Button();
button6 = new Button();
button7 = new Button();
SuspendLayout();
//
// customListBox1
//
customListBox1.Location = new Point(12, 12);
customListBox1.Name = "customListBox1";
customListBox1.SelectedItem = "";
customListBox1.Size = new Size(237, 176);
customListBox1.TabIndex = 0;
//
// button1
//
button1.Location = new Point(12, 194);
button1.Name = "button1";
button1.Size = new Size(237, 34);
button1.TabIndex = 1;
button1.Text = "Заполнить список";
button1.UseVisualStyleBackColor = true;
button1.Click += ButtonLoad_Click;
//
// button2
//
button2.Location = new Point(12, 234);
button2.Name = "button2";
button2.Size = new Size(237, 34);
button2.TabIndex = 2;
button2.Text = "Очистить список";
button2.UseVisualStyleBackColor = true;
button2.Click += ButtonClear_Click;
//
// integerInputControl1
//
integerInputControl1.Location = new Point(329, 12);
integerInputControl1.Name = "integerInputControl1";
integerInputControl1.Size = new Size(146, 56);
integerInputControl1.TabIndex = 3;
//
// button3
//
button3.Location = new Point(361, 74);
button3.Name = "button3";
button3.Size = new Size(103, 23);
button3.TabIndex = 4;
button3.Text = "Set";
button3.UseVisualStyleBackColor = true;
button3.Click += buttonInput_Click;
//
// button4
//
button4.Location = new Point(361, 103);
button4.Name = "button4";
button4.Size = new Size(103, 23);
button4.TabIndex = 5;
button4.Text = "Get";
button4.UseVisualStyleBackColor = true;
button4.Click += buttonOutput_Click;
//
// textBox1
//
textBox1.Location = new Point(329, 132);
textBox1.Name = "textBox1";
textBox1.Size = new Size(135, 23);
textBox1.TabIndex = 6;
//
// valueTableControl1
//
valueTableControl1.Location = new Point(487, 12);
valueTableControl1.Name = "valueTableControl1";
valueTableControl1.SelectedRowIndex = -1;
valueTableControl1.Size = new Size(450, 369);
valueTableControl1.TabIndex = 7;
//
// button5
//
button5.Location = new Point(487, 387);
button5.Name = "button5";
button5.Size = new Size(159, 51);
button5.TabIndex = 8;
button5.Text = "Заполнить таблицу";
button5.UseVisualStyleBackColor = true;
button5.Click += ButtonFillTable_Click;
//
// button6
//
button6.Location = new Point(652, 387);
button6.Name = "button6";
button6.Size = new Size(134, 51);
button6.TabIndex = 9;
button6.Text = "Очистить таблицу";
button6.UseVisualStyleBackColor = true;
button6.Click += ButtonClearTable_Click;
//
// button7
//
button7.Location = new Point(792, 387);
button7.Name = "button7";
button7.Size = new Size(148, 51);
button7.TabIndex = 10;
button7.Text = "Get";
button7.UseVisualStyleBackColor = true;
button7.Click += ButtonShowData_Click;
//
// MainForm
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(949, 450);
Controls.Add(button7);
Controls.Add(button6);
Controls.Add(button5);
Controls.Add(valueTableControl1);
Controls.Add(textBox1);
Controls.Add(button4);
Controls.Add(button3);
Controls.Add(integerInputControl1);
Controls.Add(button2);
Controls.Add(button1);
Controls.Add(customListBox1);
Name = "MainForm";
Text = "MainForm";
ResumeLayout(false);
PerformLayout();
}
#endregion
private FormLibrary.CustomListBox customListBox1;
private Button button1;
private Button button2;
private FormLibrary.IntegerInputControl integerInputControl1;
private Button button3;
private Button button4;
private TextBox textBox1;
private FormLibrary.ValueTableControl valueTableControl1;
private Button button5;
private Button button6;
private Button button7;
}
}