Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
295
Is it possible to only show the maximized tile? ie hide all minimized tiles?
posted

In short it is possible, yet is there a better way to do it than how I have.

To accomplish this I set the min/max tile constraints of both Minimized and MinimizedExpanded to 0, set all InterTileSpacing for Maximized mode to 0, and set the ShowTileAreaSplitter to false.

This allows only the maximized tile to be seen, yet there is a slight space to the left of the tile where the tile area splitter and minimized tiles would have been. This results in an ugly shift of the right side of the maximized tile.

To lessen the impact to the user I have moved the maximized tile to the top, so the ugly shift and extra space is added to the bottom of the tile.

I would like to remove this space entirely and prevent the shift from happening, could you please advise on the best way to do this. Thanks!

Parents
No Data
Reply
  • 4850
    Offline posted

    Hi Taylor,

    One approach to try would be to supply a style for Tile that binds its Visibility property to its State property using a converter that returns 'Collapsed' for the miminized states. Then don't set any tile constraints. 

    Theoretically this should work although I haven't tried this myself and I doubt anyone else has.

    Please let me know if this works. If not I would recommend submitting a feature request.

Children