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
595
Hide or disable maximize/restore/minimize button
posted

Is there a way to hide or disable the max/restore/min button at the top right hand of the tile pane?  The reason I'm inquiring about this is because I would like to always have one tile pane expanded and control the restore of the second via a button click and don't allow the user to minimize ether one of the tile panes.

Parents
No Data
Reply
  • 3071
    Verified Answer
    posted

    Hi,
    Don't forget  MaximizedStateChanging event. You can cancel any change according  your application logic. This sample keeps always one tile in maximized state.
    private void TileView_MaximizedStateChanging(object sender, TileStateChangingEventArgs e)
    {
         if (e.NewState == TileState.Normal)
              return;
    }

    Marin

Children