How can I add Items in Groups in UltraListView
I have a UltraListView and Im adding groups and items to it programmatically.
When I refered to the specific group through key and selected the property item, there is no function to add a new item.
Use the UltraListView.Items.Add (or AddRange) method to add the items, then assign the group to the item's Group property.
thanks