139 lines
5.3 KiB
C#
Raw Normal View History

2024-09-05 21:27:41 +04:00
namespace Forms
{
partial class Form
{
/// <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()
{
controlComboBox = new ComponentProgramming.ControlComboBox();
2024-09-05 23:14:57 +04:00
controlTextBox = new ComponentProgramming.ControlTextBox();
controlDataGrid = new ComponentProgramming.ControlDataGrid();
buttonGetObj = new Button();
buttonClear = new Button();
2024-09-06 17:40:13 +04:00
buttonEnter = new Button();
buttonAdd = new Button();
2024-09-05 21:27:41 +04:00
SuspendLayout();
//
// controlComboBox
//
2024-09-06 17:40:13 +04:00
controlComboBox.SelectedItem = "";
controlComboBox.Location = new Point(14, 4);
controlComboBox.Margin = new Padding(3, 5, 3, 5);
2024-09-05 21:27:41 +04:00
controlComboBox.Name = "controlComboBox";
2024-09-06 17:40:13 +04:00
controlComboBox.Size = new Size(202, 41);
2024-09-05 21:27:41 +04:00
controlComboBox.TabIndex = 0;
controlComboBox.ComboBoxChanged += controlComboBox_ComboBoxChanged;
//
2024-09-05 23:14:57 +04:00
// controlTextBox
//
2024-09-06 17:40:13 +04:00
controlTextBox.Location = new Point(258, 4);
controlTextBox.Margin = new Padding(3, 5, 3, 5);
2024-09-05 23:14:57 +04:00
controlTextBox.Name = "controlTextBox";
2024-09-06 17:40:13 +04:00
controlTextBox.Size = new Size(171, 39);
2024-09-05 23:14:57 +04:00
controlTextBox.TabIndex = 1;
//
// controlDataGrid
//
2024-09-06 17:40:13 +04:00
controlDataGrid.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
controlDataGrid.Location = new Point(9, 148);
controlDataGrid.Margin = new Padding(3, 5, 3, 5);
controlDataGrid.Name = "controlDataGrid";
2024-09-06 17:40:13 +04:00
controlDataGrid.Size = new Size(899, 395);
controlDataGrid.TabIndex = 2;
//
// buttonGetObj
//
2024-09-06 17:40:13 +04:00
buttonGetObj.Location = new Point(26, 553);
buttonGetObj.Margin = new Padding(3, 4, 3, 4);
buttonGetObj.Name = "buttonGetObj";
2024-09-06 17:40:13 +04:00
buttonGetObj.Size = new Size(144, 31);
buttonGetObj.TabIndex = 3;
buttonGetObj.Text = "Получить объект";
buttonGetObj.UseVisualStyleBackColor = true;
buttonGetObj.Click += buttonGetObj_Click;
//
// buttonClear
//
2024-09-06 17:40:13 +04:00
buttonClear.Location = new Point(747, 553);
buttonClear.Margin = new Padding(3, 4, 3, 4);
buttonClear.Name = "buttonClear";
2024-09-06 17:40:13 +04:00
buttonClear.Size = new Size(153, 34);
buttonClear.TabIndex = 4;
buttonClear.Text = "Очистить объекты";
buttonClear.UseVisualStyleBackColor = true;
buttonClear.Click += buttonClear_Click;
//
2024-09-06 17:40:13 +04:00
// buttonEnter
//
buttonEnter.Location = new Point(311, 48);
buttonEnter.Name = "buttonEnter";
buttonEnter.Size = new Size(84, 32);
buttonEnter.TabIndex = 5;
buttonEnter.Text = "Ввод";
buttonEnter.UseVisualStyleBackColor = true;
buttonEnter.Click += buttonEnter_Click;
//
// buttonAdd
//
buttonAdd.Location = new Point(378, 553);
buttonAdd.Name = "buttonAdd";
buttonAdd.Size = new Size(168, 31);
buttonAdd.TabIndex = 6;
buttonAdd.Text = "Добавить значение";
buttonAdd.UseVisualStyleBackColor = true;
buttonAdd.Click += buttonAdd_Click;
//
2024-09-05 21:27:41 +04:00
// Form
//
2024-09-06 17:40:13 +04:00
AutoScaleDimensions = new SizeF(8F, 20F);
2024-09-05 21:27:41 +04:00
AutoScaleMode = AutoScaleMode.Font;
2024-09-06 17:40:13 +04:00
ClientSize = new Size(914, 600);
Controls.Add(buttonAdd);
Controls.Add(buttonEnter);
Controls.Add(buttonClear);
Controls.Add(buttonGetObj);
Controls.Add(controlDataGrid);
2024-09-05 23:14:57 +04:00
Controls.Add(controlTextBox);
2024-09-05 21:27:41 +04:00
Controls.Add(controlComboBox);
2024-09-06 17:40:13 +04:00
Margin = new Padding(3, 4, 3, 4);
2024-09-05 21:27:41 +04:00
Name = "Form";
Text = "Form";
ResumeLayout(false);
}
#endregion
private ComponentProgramming.ControlImage control;
private ComponentProgramming.ControlComboBox controlComboBox;
2024-09-05 23:14:57 +04:00
private ComponentProgramming.ControlTextBox controlTextBox;
private ComponentProgramming.ControlDataGrid controlDataGrid;
private Button buttonGetObj;
private Button buttonClear;
2024-09-06 17:40:13 +04:00
private Button buttonEnter;
private Button buttonAdd;
2024-09-05 21:27:41 +04:00
}
}