WindowsPhone7のアプリケーションに画像を読み込むためにプログレスバーを使用しています。
bitmapImage.DownloadProgress += new EventHandler<DownloadProgressEventArgs (bitmapImage_DownloadProgress);
void bitmapImage_DownloadProgress(object sender, DownloadProgressEventArgs e)
{
progressBar.Value = e.Progress;
}
XAMLファイル:
<ProgressBar x:Name="progressBar" IsIndeterminate="True" Width="300" Height="30" Style="{StaticResource PerformanceProgressBar}" />
画像が読み込まれたらプログレスバーを非表示にする最善の方法を知りたいのですが。