65 lines
2.5 KiB
C#
65 lines
2.5 KiB
C#
namespace Lskj.MyControl.TreeGridControl
|
|
{
|
|
partial class TreeGridControlEx
|
|
{
|
|
/// <summary>
|
|
/// 必需的设计器变量。
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// 清理所有正在使用的资源。
|
|
/// </summary>
|
|
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region 组件设计器生成的代码
|
|
|
|
/// <summary>
|
|
/// 设计器支持所需的方法 - 不要
|
|
/// 使用代码编辑器修改此方法的内容。
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.treeList1 = new DevExpress.XtraTreeList.TreeList();
|
|
((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// treeList1
|
|
//
|
|
this.treeList1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.treeList1.Location = new System.Drawing.Point(0, 0);
|
|
this.treeList1.Name = "treeList1";
|
|
this.treeList1.OptionsBehavior.DragNodes = true;
|
|
this.treeList1.OptionsFind.AllowFindPanel = true;
|
|
this.treeList1.Size = new System.Drawing.Size(565, 265);
|
|
this.treeList1.TabIndex = 0;
|
|
this.treeList1.BeforeDragNode += new DevExpress.XtraTreeList.BeforeDragNodeEventHandler(this.OnBeforeDragNode);
|
|
this.treeList1.AfterDragNode += new DevExpress.XtraTreeList.NodeEventHandler(this.OnAfterDragNode);
|
|
this.treeList1.DoubleClick += new System.EventHandler(this.OnDoubleClick);
|
|
//
|
|
// TreeGridControlEx
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.treeList1);
|
|
this.Name = "TreeGridControlEx";
|
|
this.Size = new System.Drawing.Size(565, 265);
|
|
((System.ComponentModel.ISupportInitialize)(this.treeList1)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private DevExpress.XtraTreeList.TreeList treeList1;
|
|
}
|
|
}
|