2024-11-17 13:25:39 +04:00
|
|
|
|
namespace WinFormsApp1
|
|
|
|
|
{
|
|
|
|
|
partial class Form1
|
|
|
|
|
{
|
|
|
|
|
/// <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()
|
|
|
|
|
{
|
2024-11-17 14:18:00 +04:00
|
|
|
|
components = new System.ComponentModel.Container();
|
2024-11-17 13:25:39 +04:00
|
|
|
|
smartCheckedListBox1 = new MyUserControls.SmartCheckedListBox();
|
|
|
|
|
smartTextBox1 = new MyUserControls.SmartTextBox();
|
|
|
|
|
hierarchicalTreeView = new MyUserControls.HierarchicalTreeView();
|
2024-11-17 14:18:00 +04:00
|
|
|
|
testComponent1 = new MyUserControls.Components.testComponent(components);
|
|
|
|
|
buttonSave = new Button();
|
|
|
|
|
richTextBoxText = new RichTextBox();
|
2024-11-17 13:25:39 +04:00
|
|
|
|
SuspendLayout();
|
|
|
|
|
//
|
|
|
|
|
// smartCheckedListBox1
|
|
|
|
|
//
|
|
|
|
|
smartCheckedListBox1.Location = new Point(37, 12);
|
|
|
|
|
smartCheckedListBox1.Name = "smartCheckedListBox1";
|
|
|
|
|
smartCheckedListBox1.SelectedValue = "";
|
|
|
|
|
smartCheckedListBox1.Size = new Size(241, 182);
|
|
|
|
|
smartCheckedListBox1.TabIndex = 1;
|
|
|
|
|
//
|
|
|
|
|
// smartTextBox1
|
|
|
|
|
//
|
|
|
|
|
smartTextBox1.Location = new Point(12, 318);
|
|
|
|
|
smartTextBox1.MaxLength = 100;
|
|
|
|
|
smartTextBox1.MinLength = 0;
|
|
|
|
|
smartTextBox1.Name = "smartTextBox1";
|
|
|
|
|
smartTextBox1.Size = new Size(312, 98);
|
|
|
|
|
smartTextBox1.TabIndex = 2;
|
|
|
|
|
//
|
|
|
|
|
// hierarchicalTreeView
|
|
|
|
|
//
|
|
|
|
|
hierarchicalTreeView.Location = new Point(12, 163);
|
|
|
|
|
hierarchicalTreeView.Name = "hierarchicalTreeView";
|
|
|
|
|
hierarchicalTreeView.Size = new Size(266, 174);
|
|
|
|
|
hierarchicalTreeView.TabIndex = 3;
|
|
|
|
|
//
|
2024-11-17 14:18:00 +04:00
|
|
|
|
// buttonSave
|
|
|
|
|
//
|
|
|
|
|
buttonSave.Location = new Point(337, 162);
|
|
|
|
|
buttonSave.Name = "buttonSave";
|
|
|
|
|
buttonSave.Size = new Size(168, 32);
|
|
|
|
|
buttonSave.TabIndex = 4;
|
|
|
|
|
buttonSave.Text = "Сохранить";
|
|
|
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonSave.Click += buttonSave_Click;
|
|
|
|
|
//
|
|
|
|
|
// richTextBoxText
|
|
|
|
|
//
|
|
|
|
|
richTextBoxText.Location = new Point(337, 26);
|
|
|
|
|
richTextBoxText.Name = "richTextBoxText";
|
|
|
|
|
richTextBoxText.Size = new Size(168, 130);
|
|
|
|
|
richTextBoxText.TabIndex = 5;
|
|
|
|
|
richTextBoxText.Text = "";
|
|
|
|
|
//
|
2024-11-17 13:25:39 +04:00
|
|
|
|
// Form1
|
|
|
|
|
//
|
|
|
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
|
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
|
|
|
ClientSize = new Size(1120, 450);
|
2024-11-17 14:18:00 +04:00
|
|
|
|
Controls.Add(richTextBoxText);
|
|
|
|
|
Controls.Add(buttonSave);
|
2024-11-17 13:25:39 +04:00
|
|
|
|
Controls.Add(hierarchicalTreeView);
|
|
|
|
|
Controls.Add(smartTextBox1);
|
|
|
|
|
Controls.Add(smartCheckedListBox1);
|
|
|
|
|
Name = "Form1";
|
|
|
|
|
Text = "Form1";
|
|
|
|
|
ResumeLayout(false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
private MyUserControls.SmartCheckedListBox smartCheckedListBox1;
|
|
|
|
|
private MyUserControls.SmartTextBox smartTextBox1;
|
|
|
|
|
private MyUserControls.HierarchicalTreeView hierarchicalTreeView;
|
2024-11-17 14:18:00 +04:00
|
|
|
|
private MyUserControls.Components.testComponent testComponent1;
|
|
|
|
|
private Button buttonSave;
|
|
|
|
|
private RichTextBox richTextBoxText;
|
2024-11-17 13:25:39 +04:00
|
|
|
|
}
|
|
|
|
|
}
|