Browse By Tags

  • Binding custom class to tree

    Here is my code:

    using System.Collections.Generic;using System.ComponentModel;
    using System.Windows.Forms;

    namespace infragistic_tree
    {
      public partial class Form1 : Form
      {
      public Form1()
      {
      InitializeComponent();

      var folder1…

  • Binding class to UltraTree (no columns)

    Hello,

    I want to bind custom class, ex.:

       public class Entity
       {
          private static int count = 0;

          public int Int { get; set; }
          public string Name { get; set; }
          public EntityList List { get; set; }

          public Entity(string name)
          {
             this.Int = count++;
             this.Name…

  • UltraTree with data binding - (De)Serialization, Change ViewStyle, Hide Columns

    Hello,

    i enjoy using your controls and feel pleased about the variety of features they are providing. (We're using Infragistics NetAdvantage for .NET 2008 Vol. 3 CLR 2.0.) Unfortunately at moment there are some issues, i'm not able to solve. I've created…

  • NullReferenceException removing item from binded Tree

    Hi,
      we are using an UltraTree (winform rel. 10.3) binded to a BindingList and we are facing the following issue:
    if we have the list with only one item and we remove it,  we notice a NullReferenceException in function GetNodeFromListIndex()

    Is there any…