/* i-net software provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This programming example assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. i-net software support professionals can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. © i-net software 1998-2013 */ namespace Inet.Viewer.WinForms { partial class GroupTreeView { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Component Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.treeView1 = new System.Windows.Forms.TreeView(); this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components); this.drillToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.contextMenuStrip1.SuspendLayout(); this.SuspendLayout(); // // treeView1 // this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill; this.treeView1.Location = new System.Drawing.Point(0, 0); this.treeView1.Name = "treeView1"; this.treeView1.Size = new System.Drawing.Size(731, 568); this.treeView1.TabIndex = 0; // // contextMenuStrip1 // this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.drillToolStripMenuItem}); this.contextMenuStrip1.Name = "contextMenuStrip1"; this.contextMenuStrip1.Size = new System.Drawing.Size(126, 26); // // drillToolStripMenuItem // this.drillToolStripMenuItem.Name = "drillToolStripMenuItem"; this.drillToolStripMenuItem.Size = new System.Drawing.Size(125, 22); this.drillToolStripMenuItem.Text = "Drilldown"; // // GroupTreeView // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.treeView1); this.Name = "GroupTreeView"; this.Size = new System.Drawing.Size(731, 568); this.contextMenuStrip1.ResumeLayout(false); this.ResumeLayout(false); } #endregion /// /// The wrapped TreeView /// public System.Windows.Forms.TreeView treeView1; /// /// The linked contextMenuStrip /// public System.Windows.Forms.ContextMenuStrip contextMenuStrip1; /// /// The drillToolStripMenuItem that pops up with a right click on a node /// public System.Windows.Forms.ToolStripMenuItem drillToolStripMenuItem; } }