Files
AntdUI/example/Demo/Controls/Tree.Designer.cs
2025-12-30 13:45:40 +08:00

98 lines
3.0 KiB
C#

using System.Drawing;
using System.Windows.Forms;
namespace Demo.Controls
{
partial class Tree
{
/// <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
private void InitializeComponent()
{
header1 = new AntdUI.PageHeader();
tree1 = new AntdUI.Tree();
tree2 = new AntdUI.Tree();
tree3 = new AntdUI.Tree();
SuspendLayout();
//
// header1
//
header1.Description = "多层次的结构列表。";
header1.Dock = DockStyle.Top;
header1.Font = new Font("Microsoft YaHei UI", 12F);
header1.LocalizationDescription = "Tree.Description";
header1.LocalizationText = "Tree.Text";
header1.Location = new Point(0, 0);
header1.Name = "header1";
header1.Padding = new Padding(0, 0, 0, 10);
header1.Size = new Size(740, 74);
header1.TabIndex = 0;
header1.Text = "Tree 树形控件";
header1.UseTitleFont = true;
//
// tree1
//
tree1.Checkable = true;
tree1.Dock = DockStyle.Left;
tree1.Location = new Point(0, 74);
tree1.Name = "tree1";
tree1.Size = new Size(328, 328);
tree1.TabIndex = 0;
tree1.NodeMouseClick += tree1_NodeMouseClick;
//
// tree2
//
tree2.BlockNode = true;
tree2.Dock = DockStyle.Left;
tree2.Location = new Point(328, 74);
tree2.Name = "tree2";
tree2.Size = new Size(328, 328);
tree2.TabIndex = 1;
//
// tree3
//
tree3.Dock = DockStyle.Fill;
tree3.Location = new Point(656, 74);
tree3.Name = "tree3";
tree3.Size = new Size(84, 328);
tree3.TabIndex = 2;
tree3.BeforeExpand += tree3_BeforeExpand;
//
// Tree
//
Controls.Add(tree3);
Controls.Add(tree2);
Controls.Add(tree1);
Controls.Add(header1);
Font = new Font("Microsoft YaHei UI", 12F);
Name = "Tree";
Size = new Size(740, 402);
ResumeLayout(false);
}
#endregion
private AntdUI.PageHeader header1;
private AntdUI.Tree tree1;
private AntdUI.Tree tree2;
private AntdUI.Tree tree3;
}
}