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
310
Hide minimized tiles view
posted

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

Parents
No Data
Reply
  • 3071
    Verified Answer
    posted

    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

Children