Browse By Tags

  • Strange WinTree binding behavior?

    I thought I understood the binding behavior of the tree, and what kind of data the tree expects to bind.  Until now, I've had no issues using the cascading levels of BindingList<>.  For example, I had no issues binding my custom data and generating…

  • BindingList and expand icon

    I am binding my ultratree to a BindingList.  I have parent items and children items.  The problem is that the children items have an expand icon when they do not have any children.  Can anyone shed light why the expand icon show up on the children items…
  • Re: how to bind WinTree from instance Class

    Hi Mike,

    I was interested in that as well and tried it yesterday. When I passed only a simple BindingList<T> to the UltraTree it worked well. But then I tried it with a hierarchical list and all I saw was the root nodes collection. Probably I have some…

  • Data binding and Label editing problem

    Hi, I am having problems getting items on UltraTree to enter edit moode.

    I have set

       m_ultraTree.DataSource = new AList();

     

    this gives me a two level tree, adding and removing items to the  Alist instance causes items to appear on the Tree.

    Now I wish…

  • UltraTree binding list order

    Hi,

    I have an UltraTree binded to an object wich is composed of 8 List<MyObject> (myListA, myListB,myListC...).

    I set the binding and my tree looks like this:

    -- List 1

         --MyObject 11

         --MyObject12

    -- List 2

       --MyObject 21

    .......

    --List…