I've got an expandable grid that I'd like to fill the child as a Floated Tiles ListView. Each of the cells (or tiles) in the listview have set widths and are rows/records from a datasource. Depending on the right margin it would be good if the cells could wrap, but if not a set number of columns would be fine. Whats the best way to achieve this?
+ Row 1
[1][2][3][4][5][6]
[7][8][9][10][11]
[12][13][14][15]
[16][17][18][19]
- Row 2
- Row 3
Reducing the width would wrap the cells
+ Row 1
[1][2][3][4]
[5][6][7][8]
[9][10][11]
[12][13]
[14][15]
[16][17]
[18][19]
- Row 2
- Row 3
cheers
+ Row 1
[1][2][3][4][5][6]
[7][8][9][10][11]
[12][13][14][15]
[16][17][18][19]
- Row 2
- Row 3
Reducing the width would wrap the cells
+ Row 1
[1][2][3][4]
[5][6][7][8]
[9][10][11]
[12][13]
[14][15]
[16][17]
[18][19]
- Row 2
- Row 3
cheers