119 lines
4.7 KiB
C#
119 lines
4.7 KiB
C#
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();
|
|
controlComboBox = new ComponentProgramming.ControlComboBox();
|
|
controlTextBox = new ComponentProgramming.ControlTextBox();
|
|
buttonGetObj = new Button();
|
|
buttonEnter = new Button();
|
|
controlListBox = new ComponentProgramming.ControlListBox();
|
|
tableComponent = new ComponentProgramming.Components.TableComponent(components);
|
|
diagramComponent = new ComponentProgramming.DiagramComponent(components);
|
|
largeTextComponent = new ComponentProgramming.Components.LargeTextComponent(components);
|
|
SuspendLayout();
|
|
//
|
|
// controlComboBox
|
|
//
|
|
controlComboBox.Location = new Point(14, 4);
|
|
controlComboBox.Margin = new Padding(3, 5, 3, 5);
|
|
controlComboBox.Name = "controlComboBox";
|
|
controlComboBox.SelectedItem = "";
|
|
controlComboBox.Size = new Size(202, 41);
|
|
controlComboBox.TabIndex = 0;
|
|
controlComboBox.ComboBoxChanged += controlComboBox_ComboBoxChanged;
|
|
//
|
|
// controlTextBox
|
|
//
|
|
controlTextBox.Location = new Point(258, 4);
|
|
controlTextBox.Margin = new Padding(3, 5, 3, 5);
|
|
controlTextBox.Name = "controlTextBox";
|
|
controlTextBox.NumPattern = null;
|
|
controlTextBox.Size = new Size(171, 39);
|
|
controlTextBox.TabIndex = 1;
|
|
//
|
|
// buttonGetObj
|
|
//
|
|
buttonGetObj.Location = new Point(14, 553);
|
|
buttonGetObj.Margin = new Padding(3, 4, 3, 4);
|
|
buttonGetObj.Name = "buttonGetObj";
|
|
buttonGetObj.Size = new Size(144, 31);
|
|
buttonGetObj.TabIndex = 3;
|
|
buttonGetObj.Text = "Получить объект";
|
|
buttonGetObj.UseVisualStyleBackColor = true;
|
|
buttonGetObj.Click += buttonGetObj_Click;
|
|
//
|
|
// buttonEnter
|
|
//
|
|
buttonEnter.Location = new Point(311, 48);
|
|
buttonEnter.Name = "buttonEnter";
|
|
buttonEnter.Size = new Size(85, 32);
|
|
buttonEnter.TabIndex = 5;
|
|
buttonEnter.Text = "Ввод";
|
|
buttonEnter.UseVisualStyleBackColor = true;
|
|
buttonEnter.Click += buttonEnter_Click;
|
|
//
|
|
// controlListBox
|
|
//
|
|
controlListBox.GetIndex = -1;
|
|
controlListBox.Location = new Point(14, 87);
|
|
controlListBox.Margin = new Padding(3, 5, 3, 5);
|
|
controlListBox.Name = "controlListBox";
|
|
controlListBox.Size = new Size(382, 459);
|
|
controlListBox.TabIndex = 7;
|
|
//
|
|
// Form
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(410, 600);
|
|
Controls.Add(controlListBox);
|
|
Controls.Add(buttonEnter);
|
|
Controls.Add(buttonGetObj);
|
|
Controls.Add(controlTextBox);
|
|
Controls.Add(controlComboBox);
|
|
Margin = new Padding(3, 4, 3, 4);
|
|
Name = "Form";
|
|
Text = "Form";
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private ComponentProgramming.ControlComboBox controlComboBox;
|
|
private ComponentProgramming.ControlTextBox controlTextBox;
|
|
private Button buttonGetObj;
|
|
private Button buttonEnter;
|
|
private ComponentProgramming.ControlListBox controlListBox;
|
|
private ComponentProgramming.Components.TableComponent tableComponent;
|
|
private ComponentProgramming.DiagramComponent diagramComponent;
|
|
private ComponentProgramming.Components.LargeTextComponent largeTextComponent;
|
|
}
|
|
}
|