Hello,
I'm trying out the XamTilesControl, it's very nice but I can't get one thing to work:
When a tile is closed i want to add the tile to another xamTilesControl.
I tried to do that in the TileClosed and in the TileClosing event but it did not work (set the TileCloseAction="RemoveItem" on the source XamTilesControl)
if (sender is XamTilesControl) { if (e.Tile != null) { xamTileControlDashboard.Items.Add(e.Tile); } }
This did not have any effect at all.
What I now do is creating a new tile and copying the properties of the old tile to the new tile and add that new tile to the target XamTilesControl.
Is this the correct way to achieve the behaviour I want or is there another way to do this?
Solved the problem in the second post.
Can you provide a sample demonstrating the problem, please?