114 lines
4.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()
{
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();
largeTextComponent = new ComponentProgramming.Components.LargeTextComponent(components);
2024-09-05 21:27:41 +04:00
SuspendLayout();
//
// controlComboBox
//
2024-09-21 20:18:23 +04:00
controlComboBox.Location = new Point(12, 3);
controlComboBox.Margin = new Padding(3, 4, 3, 4);
2024-09-05 21:27:41 +04:00
controlComboBox.Name = "controlComboBox";
2024-09-21 20:18:23 +04:00
controlComboBox.SelectedItem = "";
controlComboBox.Size = new Size(177, 31);
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-21 20:18:23 +04:00
controlTextBox.Location = new Point(226, 3);
controlTextBox.Margin = new Padding(3, 4, 3, 4);
2024-09-05 23:14:57 +04:00
controlTextBox.Name = "controlTextBox";
2024-09-21 20:18:23 +04:00
controlTextBox.NumPattern = null;
controlTextBox.Size = new Size(150, 29);
2024-09-05 23:14:57 +04:00
controlTextBox.TabIndex = 1;
//
// buttonGetObj
//
buttonGetObj.Location = new Point(12, 415);
buttonGetObj.Name = "buttonGetObj";
2024-09-21 20:18:23 +04:00
buttonGetObj.Size = new Size(126, 23);
buttonGetObj.TabIndex = 3;
buttonGetObj.Text = "Получить объект";
buttonGetObj.UseVisualStyleBackColor = true;
buttonGetObj.Click += buttonGetObj_Click;
//
2024-09-06 17:40:13 +04:00
// buttonEnter
//
2024-09-21 20:18:23 +04:00
buttonEnter.Location = new Point(272, 36);
buttonEnter.Margin = new Padding(3, 2, 3, 2);
2024-09-06 17:40:13 +04:00
buttonEnter.Name = "buttonEnter";
2024-09-21 20:18:23 +04:00
buttonEnter.Size = new Size(74, 24);
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;
controlListBox.Location = new Point(12, 65);
controlListBox.Name = "controlListBox";
controlListBox.Size = new Size(334, 344);
2024-09-21 20:18:23 +04:00
controlListBox.TabIndex = 7;
//
2024-09-05 21:27:41 +04:00
// Form
//
2024-09-21 20:18:23 +04:00
AutoScaleDimensions = new SizeF(7F, 15F);
2024-09-05 21:27:41 +04:00
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(759, 450);
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);
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 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;
private ComponentProgramming.Components.LargeTextComponent largeTextComponent;
2024-09-05 21:27:41 +04:00
}
}