我有一個形象的控制在我的主頁,代碼如下:顯示進度條
<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
<StackPanel HorizontalAlignment="Left" Height="597" VerticalAlignment="Top" Width="440">
<Image x:Name="hinh1" Height="488" Stretch="Fill"/>
<ProgressBar Name="loading" Height="10" IsIndeterminate="True" Visibility="Collapsed"/>
</StackPanel>
</Grid>
,並在後面的代碼我有這樣的代碼:
Uri hinh = new Uri
("http://taigamejar.net/wp-content/uploads/2014/01/Hinh-Anh-Dep-5.jpg", UriKind.Absolute);
hinh1.Source = new BitmapImage(hinh);
在等待圖像加載,我想調用進度條運行通知用戶,它正在加載。一旦圖像加載完成,進度條應該消失。我怎樣才能做到這一點?
這隻有一個圖像。如何處理很多圖片 – user3506135