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
60
Minimize All
posted

Currently, if I have 5 tiles, 4 of which are minimized, when I try to minimize the last tile, the TileState for all tiles is set to TileState.Normal.

I've tried capturing the TileStateChanging event, canceling the update that tries to make the TileState Normal, and setting the TileState to Minimized, but to no avail. 

( meaning:          

             if(e.NewState == TileState.Normal)

            {
                e.NewState = TileState.Minimized;
                e.Cancel = true;
                e.Handled = true;
            }
)

Am I overlooking something obvious? Is there a way to allow all tiles to be minimized at the same time? 

 

Thanks!

Parents
No Data
Reply
  • 138253
    Offline posted

    Hello,

     

    It has been a while since you have made your post, in case you still need support I will be glad to assist you further. I suppose the other community members can benefit from this answer as well. I have been looking through your post and I can say that the behavior you described occurs by design and you are not able to change it, although I can make I feature request on your behalf, if you want.

     

    Feel free to write me if you have further questions.

Children