80 lines
2.8 KiB
C#
80 lines
2.8 KiB
C#
|
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()
|
|||
|
{
|
|||
|
smartCheckedListBox1 = new MyUserControls.SmartCheckedListBox();
|
|||
|
smartTextBox1 = new MyUserControls.SmartTextBox();
|
|||
|
hierarchicalTreeView = new MyUserControls.HierarchicalTreeView();
|
|||
|
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;
|
|||
|
//
|
|||
|
// Form1
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(1120, 450);
|
|||
|
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;
|
|||
|
}
|
|||
|
}
|