在GridView中间显示ProgressRing

时间:2016-12-24 02:44:26

标签: wpf xaml uwp

我有gridview,它会逐步加载数据。如何在加载过程中在UWP中的Gridview中间显示ProgressRing。

1 个答案:

答案 0 :(得分:2)

您可以将进度环设置为水平和垂直居中,然后添加让它获得网格内的所有空间。像这样:

<ProgressRing Grid.RowSpan="[no of rows]" Grid.ColumnSpan="[no of columns]" 
    Grid.Row="0" Grid.Column="0" Width="50" Height="50" VerticalAlignment="Middle" 
    HorizontalAlignment="Center">
</ProgressRing>