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 Reply Children
No Data