I am working on a winrt xaml application. I have a page that contains too many controls on it. When I click on a tile of main page that loads this big page application gets hang and after some time its navigates to that page. I get feedback from MS to show some kind of loader so that user get feeling of something happening. I applied a loader but nothing happens. Is there any way?
void ItemView_ItemClick(object sender, ItemClickEventArgs e)
{
App.ViewModel.IsDataLoading = Visibility.Visible;//Binded with Loader visibility
this.Frame.Navigate(typeof(ProjectListPage));
break;
}