I have two lists of data. To represent an "item" I have a custom UserControl (as the item has multiple fields and I want to lay it out correctly on the UserControl).
I would like the list to be populated on some type of ListBox by these user controls instead of strings.
I have seen people do this in WPF using ItemsControl or some repeater. Do you know if there is any way to do this in WinForms?
I want to ensure that I get the proper vertical scrolling if the number of user controls is bigger than the container.