简体   繁体   中英

Windows Phone 8.1 app not running exactly on Windows 10 Device

Iam running a Windows Phone 8.1 Universal application on Windows 10 Device but it is not navigating to the next pages, but the remaining functionality is completely working fine,

when i run the same application on the Windows Phone 8.1 device it is working fine

when i run the same application on Windows 10 Device and try to navigate to next page, it is saying that Xaml parse Exception was caught, and saying "The Text associated with error could not be found".

This helped me solve similar exceptions while navigating:

private async Task SafeNavigation(Type target)
{
        await Dispatcher.RunAsync(CoreDispatcherPriority.Normal, () => Frame.Navigate(target)); 
}

I don't know why this happens though..

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM