WP7中ProgressBar的奇怪行为

时间:2012-11-13 17:12:56

标签: windows-phone-7 progress-bar

所以,我正在尝试在WP7 Panorama应用程序中使用进度条。 有一个页面,即从网上下载数据,所以我想表明我的应用程序正在使用ProgressBar做什么

<controls:PanoramaItem Header="news">
            <Popup Name="myWeatherPopup" IsOpen="False" Width="404" Height="Auto" Margin="0,136,4,293">
                <StackPanel>

                    <ProgressBar Height="Auto" IsIndeterminate="True" Width="400" />
                    <TextBlock Text="Loading" HorizontalAlignment="Center" Foreground="Gray" />

                </StackPanel>
            </Popup>
        </controls:PanoramaItem>

它基本上可以正常工作。然而,有一个微小的(和一个恼人的错误)。 第一个......运行(?)点出现在每个全景项目上,就在标题下方。之后,它返回到新闻项下的正常位置。

在模拟器和Lumia 800上也会发生同样的事情。

Image

1 个答案:

答案 0 :(得分:0)

您是否尝试过不使用Popup,只需在StackPanel上设置Visibility属性?