In a WPF application, I am attempting to display the elements from an ObservableCollection in a side-by-side fashion. For example, if the collection was of letters, the basic format would be:
Letters
A D G J
B E H K
C F I L etc..
I am considering making each a separate ListView and then breaking each ViewModel down into smaller pieces, but creating separate collections (when logically it should only be one) seems like it should be a last resort. Let me know if anyone has any ideas. Thanks.