/// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.tvNodes = new StiTreeView();
     this.SuspendLayout();
     //
     // tvNodes
     //
     this.tvNodes.BorderStyle        = System.Windows.Forms.BorderStyle.None;
     this.tvNodes.Dock               = System.Windows.Forms.DockStyle.Fill;
     this.tvNodes.HideSelection      = false;
     this.tvNodes.ImageIndex         = -1;
     this.tvNodes.Location           = new System.Drawing.Point(2, 2);
     this.tvNodes.Name               = "tvNodes";
     this.tvNodes.SelectedImageIndex = -1;
     this.tvNodes.Size               = new System.Drawing.Size(296, 296);
     this.tvNodes.TabIndex           = 0;
     this.tvNodes.DoubleClick       += new System.EventHandler(this.tvNodes_DoubleClick);
     //
     // StiTreeViewBoxPopupForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor         = System.Drawing.SystemColors.Window;
     this.ClientSize        = new System.Drawing.Size(300, 300);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.tvNodes
     });
     this.Name = "StiTreeViewBoxPopupForm";
     this.Text = "StiComboBoxPopupForm";
     this.ResumeLayout(false);
 }
示例#2
0
 public StiTreeNodesFillEventArgs(TreeNodeCollection nodes, StiTreeView treeView)
 {
     this.Nodes    = nodes;
     this.TreeView = treeView;
 }
 public StiValueChangedEventArgs(StiTreeView treeView, string text)
 {
     this.TreeView = treeView;
     this.Text     = text;
 }