|
NodeTextBox node control
Saturday, 12 September 2009
NodeTextBox allows you to show and edit text. It supports text auto–wrapping (TextWrapMode property) and HTML text displaying (SupportHtml property). Example: NodeTextBox ctrl; ctrl = new NodeTextBox(); ctrl.DataFieldName = "Text"; // this is the value by default. tree.NodeControls.Add(ctrl); // NodeTextBox will display the ‘Some text' text for this node. Node node = new Node("Some text"); node.AttachTo(tree);
|
|