If you programmatically added tile panes to the web tile view, is there a way to specify the position of the tile pane in the tile view, instead of using the control's default positioning; left to right, top to bottom. For example, if I had a two row, two column tile view and wanted to add a tile pane to the second column, second row position; is that possible?
You could accomplish that by using the tileView.Items.Insert(index, tilepane) method. for instance, if you have a layout of 2 X 2 then you would want to insert at index 3, since the collection is base zero.
TilePane
tptest.Background =
new SolidColorBrush(Colors.Black);
tileView.Items.Insert(3, tptest);