119 lines
4.7 KiB
C#
Raw Permalink 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()
{
components = new System.ComponentModel.Container();
2024-09-05 21:27:41 +04:00
controlComboBox = new ComponentProgramming.ControlComboBox();
2024-09-05 23:14:57 +04:00
controlTextBox = new ComponentProgramming.ControlTextBox();
buttonGetObj = new Button();
2024-09-06 17:40:13 +04:00
buttonEnter = new Button();
2024-09-21 20:18:23 +04:00
controlListBox = new ComponentProgramming.ControlListBox();
2024-09-22 21:28:04 +04:00
tableComponent = new ComponentProgramming.Components.TableComponent(components);
2024-09-22 23:39:25 +04:00
diagramComponent = new ComponentProgramming.DiagramComponent(components);
2024-09-23 11:32:32 +04:00
largeTextComponent = new ComponentProgramming.Components.LargeTextComponent(components);
2024-09-05 21:27:41 +04:00
SuspendLayout();
//
// controlComboBox
//
2024-09-23 11:32:32 +04:00
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-21 20:18:23 +04:00
controlComboBox.SelectedItem = "";
2024-09-23 11:32:32 +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-23 11:32:32 +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-21 20:18:23 +04:00
controlTextBox.NumPattern = null;
2024-09-23 11:32:32 +04:00
controlTextBox.Size = new Size(171, 39);
2024-09-05 23:14:57 +04:00
controlTextBox.TabIndex = 1;
//
// buttonGetObj
//
2024-09-23 11:32:32 +04:00
buttonGetObj.Location = new Point(14, 553);
buttonGetObj.Margin = new Padding(3, 4, 3, 4);
buttonGetObj.Name = "buttonGetObj";
2024-09-23 11:32:32 +04:00
buttonGetObj.Size = new Size(144, 31);
buttonGetObj.TabIndex = 3;
buttonGetObj.Text = "Получить объект";
buttonGetObj.UseVisualStyleBackColor = true;
buttonGetObj.Click += buttonGetObj_Click;
//
2024-09-06 17:40:13 +04:00
// buttonEnter
//
2024-09-23 11:32:32 +04:00
buttonEnter.Location = new Point(311, 48);
2024-09-06 17:40:13 +04:00
buttonEnter.Name = "buttonEnter";
2024-09-23 11:32:32 +04:00
buttonEnter.Size = new Size(85, 32);
2024-09-06 17:40:13 +04:00
buttonEnter.TabIndex = 5;
buttonEnter.Text = "Ввод";
buttonEnter.UseVisualStyleBackColor = true;
buttonEnter.Click += buttonEnter_Click;
//
2024-09-21 20:18:23 +04:00
// controlListBox
//
controlListBox.GetIndex = -1;
2024-09-23 11:32:32 +04:00
controlListBox.Location = new Point(14, 87);
controlListBox.Margin = new Padding(3, 5, 3, 5);
2024-09-21 20:18:23 +04:00
controlListBox.Name = "controlListBox";
2024-09-23 11:32:32 +04:00
controlListBox.Size = new Size(382, 459);
2024-09-21 20:18:23 +04:00
controlListBox.TabIndex = 7;
//
2024-09-05 21:27:41 +04:00
// Form
//
2024-09-23 11:32:32 +04:00
AutoScaleDimensions = new SizeF(8F, 20F);
2024-09-05 21:27:41 +04:00
AutoScaleMode = AutoScaleMode.Font;
2024-09-23 11:32:32 +04:00
ClientSize = new Size(410, 600);
2024-09-21 20:18:23 +04:00
Controls.Add(controlListBox);
2024-09-06 17:40:13 +04:00
Controls.Add(buttonEnter);
Controls.Add(buttonGetObj);
2024-09-05 23:14:57 +04:00
Controls.Add(controlTextBox);
2024-09-05 21:27:41 +04:00
Controls.Add(controlComboBox);
2024-09-23 11:32:32 +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.ControlComboBox controlComboBox;
2024-09-05 23:14:57 +04:00
private ComponentProgramming.ControlTextBox controlTextBox;
private Button buttonGetObj;
2024-09-06 17:40:13 +04:00
private Button buttonEnter;
2024-09-21 20:18:23 +04:00
private ComponentProgramming.ControlListBox controlListBox;
2024-09-22 21:28:04 +04:00
private ComponentProgramming.Components.TableComponent tableComponent;
2024-09-22 23:39:25 +04:00
private ComponentProgramming.DiagramComponent diagramComponent;
2024-09-23 11:32:32 +04:00
private ComponentProgramming.Components.LargeTextComponent largeTextComponent;
2024-09-05 21:27:41 +04:00
}
}