I am adding tiles to a tile view grid via a background worker and finding that the tiles are not being added in the order I am expecting them to.
The first adds to the left:
Result: 1
The second adds to the right of the first:
Result: 1-2
The third adds to the right of the first, but left of the second:
Result: 1-3-2
I would like it to add directly to the last sequential spot if possible.
I am desiring that the order of the tiles appear initially in the order that I add them to the view control. The user should still be able to re-organize these tiles "after" I have added them, but I want all "added" tiles to appear at the end of the list.
How can I get this to happen either by adding them directly to the end or being able to programmatically sort them to the right locations.
Thanks
- David