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!
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.
For now, I just avoided the issue by simply not allowing the user to minimize. But going forward, I would love to have this as a feature.