MainPage にはボタンが 1 つあります。ユーザーがそのボタンをクリックすると、進行状況インジケーター変数が初期化されます。しかし、初期化されておらず、デバッグ中にnullが表示されます。では、Windows Phone 8 で特定のタスクのプログレス インジケーターをどのように表示すればよいでしょうか。
以下は私のコードです。
ProgressIndicator pi;
private void search_button_clicked(object sender, RoutedEventArgs e)
{
pi = Microsoft.Phone.Shell.SystemTray.ProgressIndicator;
//Show the indicator
pi.IsVisible = true;//Here I'm getting null reference exception
........here the code for download xml file by calling web service............
}
Progress Indicator 変数が初期化されていない理由がわかりません。