xaml windows phone 8中的系统托盘

pat*_*tel 1 xaml microsoft-metro windows-phone-8

我怎么能隐藏这个图标,

问题是我总是有相同的颜色背景,即使主题是黑色或浅,它看起来不好,我知道它可以隐藏它.在xaml但我不知道最好的方式!

我试过这个!但不工作:(

<Page 
x:Class="App1.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:PuzzleTalk"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
Shell:SystemTray.IsVisiable="False" 
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
Run Code Online (Sandbox Code Playgroud)

在此输入图像描述

在此输入图像描述

小智 5

你的代码中有一个拼写错误 - 你Shell:SystemTray.IsVisiable="False"试试了Shell:SystemTray.IsVisible="False"......