(pseudo) splash 페이지에서 Silverlight 툴킷의 PerformanceProgressBar를 사용하고 있습니다. 그러나 움직이는 점은 하나만 표시됩니다. 뭐가 잘못 되었 니?PerformanceProgressBar는 하나의 점만 표시합니다.
<Grid x:Name="LayoutRoot" Background="White">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Grid x:Name="ActiveSplash" Height="Auto" Width="480" Background="Pink" Grid.Row="1" Visibility="Visible">
<Image Name="SplashScreenImage" Source="/SplashScreenImage.jpg"></Image>
<toolkit:PerformanceProgressBar Width="480" Height="Auto"
IsIndeterminate="True"
Foreground="Blue"
Background="Blue"
Margin="0,104,0,0" />
</Grid>
<Grid x:Name="ContentPanel" Visibility="Collapsed" Grid.Row="2">
<!-- stuff -->
</Grid>
</Grid>
어쩌면 스트레치를 수평 정렬로 설정해 보셨습니까? –
예. 도움이되지 않았다. – Esa
은 디자이너에서 또는 앱을 실행할 때 발생합니까? –