namespace GeoSigmaViewer { partial class LayerTree { /// /// 必需的设计器变量。 /// private System.ComponentModel.IContainer components = null; /// /// 清理所有正在使用的资源。 /// /// 如果应释放托管资源,为 true;否则为 false。 protected override void Dispose(bool disposing) { if (disposing&&(components!=null)) { components.Dispose(); } base.Dispose(disposing); } #region 组件设计器生成的代码 /// /// 设计器支持所需的方法 - 不要修改 /// 使用代码编辑器修改此方法的内容。 /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LayerTree)); System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("节点3"); System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("节点1", new System.Windows.Forms.TreeNode[] { treeNode1}); System.Windows.Forms.TreeNode treeNode3 = new System.Windows.Forms.TreeNode("节点5"); System.Windows.Forms.TreeNode treeNode4 = new System.Windows.Forms.TreeNode("节点0", new System.Windows.Forms.TreeNode[] { treeNode2, treeNode3}); System.Windows.Forms.TreeNode treeNode5 = new System.Windows.Forms.TreeNode("节点2"); System.Windows.Forms.TreeNode treeNode6 = new System.Windows.Forms.TreeNode("节点4"); this.tsbViewNotEdit = new System.Windows.Forms.ToolStripButton(); this.tsbViewEdit = new System.Windows.Forms.ToolStripButton(); this.toolStrip1 = new System.Windows.Forms.ToolStrip(); this.drpCheckAll = new System.Windows.Forms.ToolStripSplitButton(); this.tsbCheckAll = new System.Windows.Forms.ToolStripMenuItem(); this.tsbCheckLock = new System.Windows.Forms.ToolStripMenuItem(); this.tsbCheckUnlock = new System.Windows.Forms.ToolStripMenuItem(); this.tsbCheckHide = new System.Windows.Forms.ToolStripMenuItem(); this.tsbCheckReverse = new System.Windows.Forms.ToolStripButton(); this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); this.tsbNotViewNotEdit = new System.Windows.Forms.ToolStripButton(); this.tspAddChildNode = new System.Windows.Forms.ToolStripSplitButton(); this.tsbAddChildNode = new System.Windows.Forms.ToolStripMenuItem(); this.tsbAddNextNode = new System.Windows.Forms.ToolStripMenuItem(); this.tspDeleteLayer = new System.Windows.Forms.ToolStripSplitButton(); this.tsbDeleteLayer = new System.Windows.Forms.ToolStripMenuItem(); this.imlLayer = new System.Windows.Forms.ImageList(this.components); this.treeView = new GeoSigmaViewer.TriStateTreeView(); this.toolStrip1.SuspendLayout(); this.SuspendLayout(); // // tsbViewNotEdit // this.tsbViewNotEdit.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.tsbViewNotEdit.Image = ((System.Drawing.Image)(resources.GetObject("tsbViewNotEdit.Image"))); this.tsbViewNotEdit.ImageTransparentColor = System.Drawing.Color.Silver; this.tsbViewNotEdit.Name = "tsbViewNotEdit"; this.tsbViewNotEdit.Size = new System.Drawing.Size(23, 22); this.tsbViewNotEdit.Text = "toolStripButton1"; this.tsbViewNotEdit.Click += new System.EventHandler(this.tsbViewNotEdit_Click); // // tsbViewEdit // this.tsbViewEdit.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.tsbViewEdit.Image = ((System.Drawing.Image)(resources.GetObject("tsbViewEdit.Image"))); this.tsbViewEdit.ImageTransparentColor = System.Drawing.Color.Silver; this.tsbViewEdit.Name = "tsbViewEdit"; this.tsbViewEdit.Size = new System.Drawing.Size(23, 22); this.tsbViewEdit.Text = "toolStripButton2"; this.tsbViewEdit.Click += new System.EventHandler(this.tsbViewEdit_Click); // // toolStrip1 // this.toolStrip1.Font = new System.Drawing.Font("Segoe UI", 9F); this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden; this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.drpCheckAll, this.tsbCheckReverse, this.toolStripSeparator1, this.tsbViewEdit, this.tsbViewNotEdit, this.tsbNotViewNotEdit, this.tspAddChildNode, this.tspDeleteLayer}); this.toolStrip1.Location = new System.Drawing.Point(0, 0); this.toolStrip1.Name = "toolStrip1"; this.toolStrip1.Size = new System.Drawing.Size(301, 25); this.toolStrip1.TabIndex = 0; this.toolStrip1.Text = "toolStrip1"; // // drpCheckAll // this.drpCheckAll.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.drpCheckAll.DoubleClickEnabled = true; this.drpCheckAll.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tsbCheckAll, this.tsbCheckLock, this.tsbCheckUnlock, this.tsbCheckHide}); this.drpCheckAll.Image = ((System.Drawing.Image)(resources.GetObject("drpCheckAll.Image"))); this.drpCheckAll.ImageTransparentColor = System.Drawing.Color.Silver; this.drpCheckAll.Name = "drpCheckAll"; this.drpCheckAll.Size = new System.Drawing.Size(32, 22); this.drpCheckAll.Text = "toolStripDropDownButton1"; this.drpCheckAll.ToolTipText = "选择"; this.drpCheckAll.ButtonClick += new System.EventHandler(this.drpCheckAll_ButtonClick); // // tsbCheckAll // this.tsbCheckAll.Image = ((System.Drawing.Image)(resources.GetObject("tsbCheckAll.Image"))); this.tsbCheckAll.ImageTransparentColor = System.Drawing.Color.Silver; this.tsbCheckAll.Name = "tsbCheckAll"; this.tsbCheckAll.Size = new System.Drawing.Size(152, 22); this.tsbCheckAll.Text = "全选"; this.tsbCheckAll.Click += new System.EventHandler(this.tsbCheckAll_Click); // // tsbCheckLock // this.tsbCheckLock.Image = ((System.Drawing.Image)(resources.GetObject("tsbCheckLock.Image"))); this.tsbCheckLock.Name = "tsbCheckLock"; this.tsbCheckLock.Size = new System.Drawing.Size(152, 22); this.tsbCheckLock.Text = "选择锁定层"; this.tsbCheckLock.Click += new System.EventHandler(this.tsbCheckLock_Click); // // tsbCheckUnlock // this.tsbCheckUnlock.Image = ((System.Drawing.Image)(resources.GetObject("tsbCheckUnlock.Image"))); this.tsbCheckUnlock.Name = "tsbCheckUnlock"; this.tsbCheckUnlock.Size = new System.Drawing.Size(152, 22); this.tsbCheckUnlock.Text = "选择可编辑层"; this.tsbCheckUnlock.Click += new System.EventHandler(this.tsbCheckUnlock_Click); // // tsbCheckHide // this.tsbCheckHide.Image = ((System.Drawing.Image)(resources.GetObject("tsbCheckHide.Image"))); this.tsbCheckHide.Name = "tsbCheckHide"; this.tsbCheckHide.Size = new System.Drawing.Size(152, 22); this.tsbCheckHide.Text = "选择隐藏层"; this.tsbCheckHide.Click += new System.EventHandler(this.tsbCheckHide_Click); // // tsbCheckReverse // this.tsbCheckReverse.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.tsbCheckReverse.Image = ((System.Drawing.Image)(resources.GetObject("tsbCheckReverse.Image"))); this.tsbCheckReverse.ImageTransparentColor = System.Drawing.Color.Silver; this.tsbCheckReverse.Name = "tsbCheckReverse"; this.tsbCheckReverse.Size = new System.Drawing.Size(23, 22); this.tsbCheckReverse.Text = "反选"; this.tsbCheckReverse.Click += new System.EventHandler(this.tsbCheckReverse_Click); // // toolStripSeparator1 // this.toolStripSeparator1.Name = "toolStripSeparator1"; this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25); // // tsbNotViewNotEdit // this.tsbNotViewNotEdit.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.tsbNotViewNotEdit.Image = ((System.Drawing.Image)(resources.GetObject("tsbNotViewNotEdit.Image"))); this.tsbNotViewNotEdit.ImageTransparentColor = System.Drawing.Color.Silver; this.tsbNotViewNotEdit.Name = "tsbNotViewNotEdit"; this.tsbNotViewNotEdit.Size = new System.Drawing.Size(23, 22); this.tsbNotViewNotEdit.Text = "toolStripButton3"; this.tsbNotViewNotEdit.Click += new System.EventHandler(this.tsbNotViewNotEdit_Click); // // tspAddChildNode // this.tspAddChildNode.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.tspAddChildNode.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tsbAddChildNode, this.tsbAddNextNode}); this.tspAddChildNode.Image = ((System.Drawing.Image)(resources.GetObject("tspAddChildNode.Image"))); this.tspAddChildNode.ImageTransparentColor = System.Drawing.Color.Magenta; this.tspAddChildNode.Name = "tspAddChildNode"; this.tspAddChildNode.Size = new System.Drawing.Size(32, 22); this.tspAddChildNode.Text = "添加节点"; this.tspAddChildNode.ButtonClick += new System.EventHandler(this.tspAddChildNode_ButtonClick); // // tsbAddChildNode // this.tsbAddChildNode.Image = ((System.Drawing.Image)(resources.GetObject("tsbAddChildNode.Image"))); this.tsbAddChildNode.Name = "tsbAddChildNode"; this.tsbAddChildNode.Size = new System.Drawing.Size(152, 22); this.tsbAddChildNode.Text = "添加子节点"; this.tsbAddChildNode.Click += new System.EventHandler(this.tsbAddChildNode_Click); // // tsbAddNextNode // this.tsbAddNextNode.Image = ((System.Drawing.Image)(resources.GetObject("tsbAddNextNode.Image"))); this.tsbAddNextNode.Name = "tsbAddNextNode"; this.tsbAddNextNode.Size = new System.Drawing.Size(152, 22); this.tsbAddNextNode.Text = "添加同级节点"; this.tsbAddNextNode.Click += new System.EventHandler(this.tsbAddNextNode_Click); // // tspDeleteLayer // this.tspDeleteLayer.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.tspDeleteLayer.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tsbDeleteLayer}); this.tspDeleteLayer.Image = ((System.Drawing.Image)(resources.GetObject("tspDeleteLayer.Image"))); this.tspDeleteLayer.ImageTransparentColor = System.Drawing.Color.Magenta; this.tspDeleteLayer.Name = "tspDeleteLayer"; this.tspDeleteLayer.Size = new System.Drawing.Size(32, 22); this.tspDeleteLayer.Text = "toolStripSplitButton1"; this.tspDeleteLayer.ButtonClick += new System.EventHandler(this.tspDeleteLayer_ButtonClick); // // tsbDeleteLayer // this.tsbDeleteLayer.Image = ((System.Drawing.Image)(resources.GetObject("tsbDeleteLayer.Image"))); this.tsbDeleteLayer.Name = "tsbDeleteLayer"; this.tsbDeleteLayer.Size = new System.Drawing.Size(126, 22); this.tsbDeleteLayer.Text = "删除图层"; // // imlLayer // this.imlLayer.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imlLayer.ImageStream"))); this.imlLayer.TransparentColor = System.Drawing.Color.Silver; this.imlLayer.Images.SetKeyName(0, "unLock_16x16.png"); this.imlLayer.Images.SetKeyName(1, "Lock_16x16.png"); this.imlLayer.Images.SetKeyName(2, "Hide_16x16.png"); // // treeView // this.treeView.Dock = System.Windows.Forms.DockStyle.Fill; this.treeView.FullRowSelect = true; this.treeView.HideSelection = false; this.treeView.ID = -921398683; this.treeView.Location = new System.Drawing.Point(0, 25); this.treeView.Name = "treeView"; treeNode1.Name = "节点3"; treeNode1.Text = "节点3"; treeNode2.Name = "节点1"; treeNode2.Text = "节点1"; treeNode3.Name = "节点5"; treeNode3.Text = "节点5"; treeNode4.Name = "节点0"; treeNode4.Text = "节点0"; treeNode5.Name = "节点2"; treeNode5.Text = "节点2"; treeNode6.Name = "节点4"; treeNode6.Text = "节点4"; this.treeView.Nodes.AddRange(new System.Windows.Forms.TreeNode[] { treeNode4, treeNode5, treeNode6}); this.treeView.Size = new System.Drawing.Size(301, 234); this.treeView.TabIndex = 1; this.treeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView_AfterSelect); this.treeView.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.treeView_NodeMouseDoubleClick); // // LayerTree // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.treeView); this.Controls.Add(this.toolStrip1); this.Name = "LayerTree"; this.Size = new System.Drawing.Size(301, 259); this.toolStrip1.ResumeLayout(false); this.toolStrip1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private TriStateTreeView treeView; private System.Windows.Forms.ToolStripButton tsbViewNotEdit; private System.Windows.Forms.ToolStripButton tsbViewEdit; private System.Windows.Forms.ToolStrip toolStrip1; private System.Windows.Forms.ToolStripButton tsbNotViewNotEdit; private System.Windows.Forms.ImageList imlLayer; private System.Windows.Forms.ToolStripSeparator toolStripSeparator1; private System.Windows.Forms.ToolStripButton tsbCheckReverse; private System.Windows.Forms.ToolStripSplitButton drpCheckAll; private System.Windows.Forms.ToolStripMenuItem tsbCheckAll; private System.Windows.Forms.ToolStripMenuItem tsbCheckLock; private System.Windows.Forms.ToolStripMenuItem tsbCheckUnlock; private System.Windows.Forms.ToolStripMenuItem tsbCheckHide; private System.Windows.Forms.ToolStripSplitButton tspAddChildNode; private System.Windows.Forms.ToolStripMenuItem tsbAddChildNode; private System.Windows.Forms.ToolStripMenuItem tsbAddNextNode; private System.Windows.Forms.ToolStripSplitButton tspDeleteLayer; private System.Windows.Forms.ToolStripMenuItem tsbDeleteLayer; } }