I have a UserControl which I need to keep adding to a StackPanel during runtime (per User's action). I want a close button (a small 'x') on the right side top corner for each item in StackPanel.
I could do this: add my UserControl to some Panel which has the 'x' button that glows on mouse hover, which when clicked deletes the item from the StackPanel.
However, I am looking for a better solution to this problem. Like is there any control out there which offers a similar functionality?
I was looking for TileView. All I need is a single row of Tiles which keep added per users input, and have the ability to delete a "Tile". Each tile would contain my UserControl.
Please let me know,