I need to have an items control / list box, where I can specify a fixed number of instances per row, with equal widths, such that if a I bind a collection with X number of items, the number of rows would be # items / # instances per row. For example:
List<MyClass> MyClasses = new List<MyClass> ()
{
new MyClass {...}
...
}
Display
Instance Instance Instance
Instance Instance Instance
Instance Instance Instance
Instance ...
Is there anyway to do this without writing a custom panel or control???