Windows Phone 7中的慣用語是在屏幕的最頂部顯示加載指示符。 (我認爲裝載指示器和頂部之間沒有任何填充。)Silverlight:將一個元素放置在屏幕的頂部?
在Silverlight中執行此操作的最佳方法是什麼?這XAML的作品,八九不離十:
<Grid x:Name="LayoutRoot" Background="Transparent">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<!-- this needs to be at the very top of the screen -->
<ProgressBar x:Name="LoadingProgressBar" IsIndeterminate="True" Style="{StaticResource PerformanceProgressBar}" Grid.Row="0"/>
<controls:Pivot Title="SECTIONS" x:Name="pivotControl" SelectionChanged="pivotControl_SelectionChanged" Grid.Row="1" />
</Grid>
它會將ProgressBar
靠近屏幕的頂部,但仍有空間。我可以申請一個負值保證金,但我懷疑有一個更優雅的方法。這樣做的首選方式是什麼?