I have a List<> which is returned from a struct with three columns. How do I assign the values of this list to UltraWinListView since there is no DataSource tried using "AddRange" but that does not allow to use a Object Collection.
The only option I could think of was to add each item at a time using "Items.Add".
You are better off creating an UltraListViewItem for each item in your generic list, adding each UltraListViewItem to an array (of type UltraListViewItem), then passing that array to AddRange, so you don't generate a property change notification for each item that you add, which could affect performance adversely.