Hi,
I'm currently filling the links dropdown list programatically, I want to enlarge the width of the treeview after opening the dropdown list (the one that display my links). Is there any way to accomplish that?
Here is some sample code:
CuteEditor.ToolControl links = htmlEditor.ToolControls["LinkTree"];
if (links != null)
{
CuteEditor.TreeDropDownList linkList = (CuteEditor.TreeDropDownList)links.Control;
linkList.Items.Clear();
CuteEditor.TreeListItem root = new CuteEditor.TreeListItem("Pages", null);
...
linkList.Items.Add(root);
}
Thanks