My favorites | Sign in
Project Home Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
HComboTree  
A combobox that shows a HTreeView as a popup
Updated Feb 4, 2010 by fr.dan...@gmail.com

Introduction

A easy to use combobox with a treeview inside

Methods: none

Properties:

string Text gets/sets the current text
HTreeView Tree gets the popup treewidget as a HTreeView
int DropDownHeight gets/sets the current drop down height

Events:

EventHandler ValueChanged - raised when the current text changes


Details

Example:

   HTreeNode root   = new HTreeNode( "gigi1" );
   combobox.Tree.Nodes.Add( root );
			
   root.Nodes.Add( new HTreeNode( "gigi2" ) );
   root.Nodes.Add( new HTreeNode( "gigi3" ) );
   root.Nodes.Add( new HTreeNode( "gigi4" ) );

see the wiki for the HTreeView here for more info.

Powered by Google Project Hosting