Мне интересно, почему, когда я загружаю свой проект Windows Phone, на моем первом экране появляется панель приложений, которая является просто фоном загрузки ..
Как сделать так, чтобы оно отображалось в самом конце загрузки.
Это код, который я использую.
public MainPage()
{
InitializeComponent();
AnimationContext = LayoutRoot; // for page transitions
_tappedListBox = null; // used for setting the activated ListBox on panorama for animation to map page
// If the constructor has been called, this is not a page that was already in memory:
_newPageInstance = true;
// Setup the background thread worker properties:
_worker = new BackgroundWorker(); // Create a background thread worker for downloading/installing park maps
_worker.WorkerReportsProgress = true;
_worker.WorkerSupportsCancellation = true;
_worker.DoWork += new DoWorkEventHandler(worker_DoWork);
_worker.ProgressChanged += new ProgressChangedEventHandler(worker_ProgressChanged);
_worker.RunWorkerCompleted += new RunWorkerCompletedEventHandler(worker_RunWorkerCompleted);
// Set the data context of the listbox control to the sample data
this.DataContext = App.ViewModel;
this.Loaded += new RoutedEventHandler(MainPage_Loaded);
}
И я установил видимость здесь.
private void MainPage_Loaded(object sender, RoutedEventArgs e)
{
if (!App.ViewModel.IsDataLoaded)
App.ViewModel.LoadData();
; // load panorama data (if need to)
if (!App.ViewModel.IsDataLoaded == false)
{
this.ApplicationBar.IsVisible = true;
}
}