namespace XmlToTreeView { partial class NodeSelectionDialog { /// /// 必需的设计器变量。 /// private System.ComponentModel.IContainer components = null; /// /// 清理所有正在使用的资源。 /// /// 如果应释放托管资源,为 true;否则为 false。 protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows 窗体设计器生成的代码 /// /// 设计器支持所需的方法 - 不要修改 /// 使用代码编辑器修改此方法的内容。 /// private void InitializeComponent() { this.menuStrip = new System.Windows.Forms.MenuStrip(); this.打开XMLOToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.panel1 = new System.Windows.Forms.Panel(); this.panel3 = new System.Windows.Forms.Panel(); this.txtComment = new System.Windows.Forms.TextBox(); this.label2 = new System.Windows.Forms.Label(); this.txtType = new System.Windows.Forms.TextBox(); this.label1 = new System.Windows.Forms.Label(); this.txtNode = new System.Windows.Forms.TextBox(); this.lblNode = new System.Windows.Forms.Label(); this.panel2 = new System.Windows.Forms.Panel(); this.txtSearch = new System.Windows.Forms.TextBox(); this.btnSearch = new System.Windows.Forms.Button(); this.treeView = new System.Windows.Forms.TreeView(); this.menuStrip.SuspendLayout(); this.panel1.SuspendLayout(); this.panel3.SuspendLayout(); this.panel2.SuspendLayout(); this.SuspendLayout(); // // menuStrip // this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.打开XMLOToolStripMenuItem}); this.menuStrip.Location = new System.Drawing.Point(0, 0); this.menuStrip.Name = "menuStrip"; this.menuStrip.Size = new System.Drawing.Size(1008, 25); this.menuStrip.TabIndex = 3; this.menuStrip.Text = "menuStrip2"; // // 打开XMLOToolStripMenuItem // this.打开XMLOToolStripMenuItem.Name = "打开XMLOToolStripMenuItem"; this.打开XMLOToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O))); this.打开XMLOToolStripMenuItem.Size = new System.Drawing.Size(88, 21); this.打开XMLOToolStripMenuItem.Text = "打开XML(&O)"; this.打开XMLOToolStripMenuItem.Click += new System.EventHandler(this.打开XMLOToolStripMenuItem_Click); // // panel1 // this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.panel1.Controls.Add(this.panel3); this.panel1.Controls.Add(this.panel2); this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom; this.panel1.Location = new System.Drawing.Point(0, 583); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(1008, 146); this.panel1.TabIndex = 5; // // panel3 // this.panel3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.panel3.Controls.Add(this.txtComment); this.panel3.Controls.Add(this.label2); this.panel3.Controls.Add(this.txtType); this.panel3.Controls.Add(this.label1); this.panel3.Controls.Add(this.txtNode); this.panel3.Controls.Add(this.lblNode); this.panel3.Location = new System.Drawing.Point(3, 3); this.panel3.Name = "panel3"; this.panel3.Size = new System.Drawing.Size(999, 101); this.panel3.TabIndex = 10; // // txtComment // this.txtComment.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtComment.Font = new System.Drawing.Font("宋体", 12F); this.txtComment.Location = new System.Drawing.Point(58, 71); this.txtComment.Name = "txtComment"; this.txtComment.Size = new System.Drawing.Size(934, 26); this.txtComment.TabIndex = 9; // // label2 // this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.label2.AutoSize = true; this.label2.Font = new System.Drawing.Font("宋体", 12F); this.label2.Location = new System.Drawing.Point(6, 75); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(55, 16); this.label2.TabIndex = 8; this.label2.Text = "注释:"; // // txtType // this.txtType.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtType.Font = new System.Drawing.Font("宋体", 12F); this.txtType.Location = new System.Drawing.Point(58, 39); this.txtType.Name = "txtType"; this.txtType.Size = new System.Drawing.Size(934, 26); this.txtType.TabIndex = 7; // // label1 // this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.label1.AutoSize = true; this.label1.Font = new System.Drawing.Font("宋体", 12F); this.label1.Location = new System.Drawing.Point(6, 43); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(55, 16); this.label1.TabIndex = 6; this.label1.Text = "类型:"; // // txtNode // this.txtNode.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtNode.Font = new System.Drawing.Font("宋体", 12F); this.txtNode.Location = new System.Drawing.Point(58, 7); this.txtNode.Name = "txtNode"; this.txtNode.Size = new System.Drawing.Size(934, 26); this.txtNode.TabIndex = 2; this.txtNode.DoubleClick += new System.EventHandler(this.txtNode_DoubleClick); // // lblNode // this.lblNode.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.lblNode.AutoSize = true; this.lblNode.Font = new System.Drawing.Font("宋体", 12F); this.lblNode.Location = new System.Drawing.Point(6, 10); this.lblNode.Name = "lblNode"; this.lblNode.Size = new System.Drawing.Size(55, 16); this.lblNode.TabIndex = 1; this.lblNode.Text = "当前:"; // // panel2 // this.panel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.panel2.Controls.Add(this.txtSearch); this.panel2.Controls.Add(this.btnSearch); this.panel2.Location = new System.Drawing.Point(0, 110); this.panel2.Name = "panel2"; this.panel2.Size = new System.Drawing.Size(1002, 31); this.panel2.TabIndex = 5; // // txtSearch // this.txtSearch.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtSearch.Font = new System.Drawing.Font("宋体", 12F); this.txtSearch.Location = new System.Drawing.Point(3, 2); this.txtSearch.Name = "txtSearch"; this.txtSearch.Size = new System.Drawing.Size(934, 26); this.txtSearch.TabIndex = 3; this.txtSearch.Click += new System.EventHandler(this.txtSearch_Click); // // btnSearch // this.btnSearch.Anchor = System.Windows.Forms.AnchorStyles.Right; this.btnSearch.Font = new System.Drawing.Font("宋体", 12F); this.btnSearch.Location = new System.Drawing.Point(940, 2); this.btnSearch.Name = "btnSearch"; this.btnSearch.Size = new System.Drawing.Size(59, 26); this.btnSearch.TabIndex = 4; this.btnSearch.Text = "查找"; this.btnSearch.UseVisualStyleBackColor = true; this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click); // // treeView // this.treeView.Dock = System.Windows.Forms.DockStyle.Fill; this.treeView.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.treeView.Location = new System.Drawing.Point(0, 25); this.treeView.Name = "treeView"; this.treeView.Size = new System.Drawing.Size(1008, 558); this.treeView.TabIndex = 6; this.treeView.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.treeView_NodeMouseClick); this.treeView.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.treeView_NodeMouseDoubleClick); // // NodeSelectionDialog // this.AcceptButton = this.btnSearch; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; this.ClientSize = new System.Drawing.Size(1008, 729); this.Controls.Add(this.treeView); this.Controls.Add(this.panel1); this.Controls.Add(this.menuStrip); this.Name = "NodeSelectionDialog"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "通讯地址选择"; this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.NodeSelectionDialog_FormClosed); this.Load += new System.EventHandler(this.NodeSelectionDialog_Load); this.menuStrip.ResumeLayout(false); this.menuStrip.PerformLayout(); this.panel1.ResumeLayout(false); this.panel3.ResumeLayout(false); this.panel3.PerformLayout(); this.panel2.ResumeLayout(false); this.panel2.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.MenuStrip menuStrip; private System.Windows.Forms.ToolStripMenuItem 打开XMLOToolStripMenuItem; private System.Windows.Forms.Panel panel1; private System.Windows.Forms.Label lblNode; private System.Windows.Forms.TextBox txtNode; private System.Windows.Forms.Button btnSearch; private System.Windows.Forms.TextBox txtSearch; private System.Windows.Forms.Panel panel2; private System.Windows.Forms.TextBox txtType; private System.Windows.Forms.Label label1; private System.Windows.Forms.TreeView treeView; private System.Windows.Forms.TextBox txtComment; private System.Windows.Forms.Label label2; private System.Windows.Forms.Panel panel3; } }