Hi Guys,
is there a way of hiding the minimized tiles when one is maximized? I'd really only like the one maximized to take up the whole screen and don't need the list of minimized tiles on the side.
Regards,
Stevo
Thanks Marin that works!
Hi Stevo,You can set the minimized strip width to 1. This will hide the minimized tiles.private void XamWebTileView_MaximizedStateChanged(object sender, TileStateChangedEventArgs e){ TilelePane tile = e.Element as TilePane; if (e.NewState == TileState.Maximized) { tileView1.TilePanelSettings.MinimizedStripWidth = 1; } else { tileView1.TilePanelSettings.MinimizedStripWidth = 0.2; }}Regards,Marin