Hide or not to hide the system tray in a Windows Phone 7 application?

前端 未结 4 871
隐瞒了意图╮
隐瞒了意图╮ 2021-02-15 23:15

I am debating whether to hide or not to hide the system tray in a Windows Phone 7 application. I\'ve not found any general suggestions on this issue -the official Windows Phone

4条回答
  •  迷失自我
    2021-02-15 23:37

    Transparency and colors are now possible with Mango by setting its BackgroundColor and Opacity :

    shell:SystemTray.IsVisible="True"
    shell:SystemTray.BackgroundColor="Transparent"
    shell:SystemTray.Opacity="0"
    

    I would say by default show it unless it really gets in the way in a way you can't workaround, especially if its an app and not a game.

提交回复
热议问题