当System.Tray不可见时,在Windows手机中显示进度指示器

时间:2015-03-17 08:50:47

标签: xaml windows-phone progress-indicator

我希望在System.Tray不可见时(我的应用程序是全屏)在我的Windows手机应用程序中显示进度指示器。是否有一种简单的方法来显示进度指示器?

2 个答案:

答案 0 :(得分:1)

为什么不使用ProgresBar控件,当您将其置于布局顶部时,会产生相同的结果?它易于使用,看起来完全一样。

<Grid x:Name="LayoutRoot">
    <!-- Your controls are here -->

    <ProgressBar x:Name="MyProgressBar" 
                 VerticalAlignment="Top"
                 IsIndeterminate="True" />
</Grid>

答案 1 :(得分:0)

显示SystemTray的好处是 - 您可以将其用于状态消息和进度。如果您选择不使用SystemTray,则必须将ProgressBar添加到网页的xaml。