Hi,
As per requirement we have to add removed tile again on UI. Using property "TileCloseAction" we are able to remove tile from UI. But on click of check box as mentioned in attached solution not able to add removed tile again on UI.
Please let us know how to add removed tile gain on UI. Please find attached solution and screenshot for reference.
Its fine. Thank you.
Hello Avinash,
Thank you for contacting us.
I have been looking into your question. What I can suggest is to take a look at our samples browser, where you can find a sample application for this functionality. The sample is named "Tile Closing Actions" and can be found in the Organization section of the XamTileManager.
Please do not hesitate to let me know if you have any further questions on this matter.
using below code able to get removed tile again.
private void filterSectionCheckbox_Click(object sender, System.Windows.RoutedEventArgs e) { XamTile addTile = this.xamTileManager1.TileFromItem(filterXamTile); if (addTile != null) { addTile.IsClosed = false; } }
Please let us know is this solution is feasible ? or need to get in different way.