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
335
Is there a control similar to xamTreeGrid in Infragistics windows forms
posted

I am looking for a tree control in windows forms to represent heterogeneous data. Below is an example.

http://es.infragistics.com/samples/wpf/tree-grid/heterogeneous-data

What can I use to accomplish this functionality in windows forms.

Parents
No Data
Reply
  • 469350
    Suggested Answer
    Offline posted

    Hi,

    The closest thing on the WinForms side would be the UltraTree control. It has the ability to display columns like a grid in several different styles.

    I'm not 100% sure that the WinTree could do heterogeneous  data in quite the same way as the screen shot of the TreeGrid, though. The Size column in the screen shot is showing both strings and numeric values at the same level in some cases and I'm not aboslutely sure the WinTree can do that. Of course, if the numbers were stored as strings, it would not be a problem. But if you needed to store data as both strings and numeric data at the same level in the hierarchy for different nodes, I'd have to investigate whether or not that's possible. Actually... I'm pretty sure it's possible in the FreeForm style, but that sytle shows multiple headers and the screen shot here shows only one set of headers, which would be more like OutlookExpress style.

    So it's hard to say whether the WinTree will meet your needs without knowing a lot more details about exactly what your requirements are.

Children