Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
110
TreeNode with CustomControl or with UltraComboEditor
posted

I have a UltraTree with Nodes, where i want a UltraComboEditor beside. My Node now has a Checkbox, a Image and a Text. 

Beside the Text should be a ComboEditor.

You can see how the tree should look like in the next picture. 


UltraTreeNode node = new UltraTreeNode();
node.Override.NodeStyle = NodeStyle.CheckBox;
node.LeftImages.Add(element.Image);
node.Text = element.Text;


When i put a EditorComponent on the Node, then i loose the text but get the UltraComboEditor instead.
node.Override.EditorComponent = new UltraComboEditor();



How do i get a node how it looks like in Picture 1?
I tried to write a MyCustomControl with a UltraLabel and a UltraComboEditor as a UserControl, but i can't
set it as EditorComponent. Need some help how to write the CustomControl please.

node.Override.EditorComponent = new MyCustomControl();
Parents Reply Children