Support & Community

NodeExpandableControlContainer node control

Previous Table of Contents Next

The NodeExpandableControlContainer node control is identical to the NodeControlContainer node control, but displays a bound control in an expandable area. To bind a node control to a container, use the ContainerFieldName property as stated below.

Example:

// create node control.
NodeExpandableControlContainer nc = new NodeExpandableControlContainer();
nc.ContainerFieldName = "Container";
nc.AttachTo(tree);
 
// add node.
NodeWithControl node = new NodeWithControl("Node title");
// create and attach the button control.
Button btn = new Button();
btn.Text = "Test";
node.Container = new ControlContainer(btn);
node.AttachTo(tree);
 
tree.Options.Node.AutoNodeHeight = true;
// optional option.
tree.Options.Selection.HoverStyle = eHoverStyle.SoftSelect;

Previous Top Next
Last news
Flexible TreeView v2.7
Sunday, 01 August 2010

Flexible TreeView v2.7 has been released with completely reimplemented data binding support.

Flexible TreeView v2.6
Thursday, 13 May 2010
Flexible TreeView v2.6 has been released with Visual Studio 2010 support, new NodeDateTime node control, data access great speed increase and much more.
Flexible TreeView v2.5
Saturday, 13 March 2010

Flexible TreeView v2.5 has been released with the new NodeProgressBar node control.

Latest release

Version:
Release date:
2.7.1
Aug 11, 2010


Copyright © 2006-2010 ARMSoft. All rights reserved.