I use the TilePanel to basically create a multi document interface for the top level records that are displayed in my app. My problem is that if users click the close button, the tile closes, but stays in memory along with the control it contains and therefore is not disposed and no new instance can be created. I tried using a sample I found somehwere on this site, but it did not work.
Any help would be appreciated
Hi,
You could try to dispose or remove the tile in its VisibleChanged event if the tile is invisible (closed).
I hope this will help you.
Best Regards,
Stefaniya
I tried that. but apparently while the tiles are changing their state, they all change their visibility so I ended up with no windows left.