107 lines
3.9 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()
{
controlComboBox = new ComponentProgramming.ControlComboBox();
controlTextBox = new ComponentProgramming.ControlTextBox();
controlDataGrid = new ComponentProgramming.ControlDataGrid();
buttonGetObj = new Button();
buttonClear = new Button();
SuspendLayout();
//
// controlComboBox
//
controlComboBox.elements = "";
controlComboBox.Location = new Point(12, 3);
controlComboBox.Name = "controlComboBox";
controlComboBox.Size = new Size(177, 31);
controlComboBox.TabIndex = 0;
controlComboBox.ComboBoxChanged += controlComboBox_ComboBoxChanged;
//
// controlTextBox
//
controlTextBox.Location = new Point(226, 3);
controlTextBox.Name = "controlTextBox";
controlTextBox.Size = new Size(150, 29);
controlTextBox.TabIndex = 1;
controlTextBox.CheckBoxChanged += controlTextBox_CheckBoxChanged;
//
// controlDataGrid
//
controlDataGrid.Location = new Point(12, 111);
controlDataGrid.Name = "controlDataGrid";
controlDataGrid.Size = new Size(776, 296);
controlDataGrid.TabIndex = 2;
//
// buttonGetObj
//
buttonGetObj.Location = new Point(23, 415);
buttonGetObj.Name = "buttonGetObj";
buttonGetObj.Size = new Size(126, 23);
buttonGetObj.TabIndex = 3;
buttonGetObj.Text = "Получить объект";
buttonGetObj.UseVisualStyleBackColor = true;
buttonGetObj.Click += buttonGetObj_Click;
//
// buttonClear
//
buttonClear.Location = new Point(654, 415);
buttonClear.Name = "buttonClear";
buttonClear.Size = new Size(134, 23);
buttonClear.TabIndex = 4;
buttonClear.Text = "Очистить объекты";
buttonClear.UseVisualStyleBackColor = true;
buttonClear.Click += buttonClear_Click;
//
// Form
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 450);
Controls.Add(buttonClear);
Controls.Add(buttonGetObj);
Controls.Add(controlDataGrid);
Controls.Add(controlTextBox);
Controls.Add(controlComboBox);
Name = "Form";
Text = "Form";
ResumeLayout(false);
}
#endregion
private ComponentProgramming.ControlImage control;
private ComponentProgramming.ControlComboBox controlComboBox;
private ComponentProgramming.ControlTextBox controlTextBox;
private ComponentProgramming.ControlDataGrid controlDataGrid;
private Button buttonGetObj;
private Button buttonClear;
}
}