简体   繁体   English

Windows Phone 8.1应用未在Windows 10设备上完全运行

[英]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, 我在Windows 10设备上运行Windows Phone 8.1通用应用程序,但没有导航到下一页,但是其余功能完全可以正常使用,

when i run the same application on the Windows Phone 8.1 device it is working fine 当我在Windows Phone 8.1设备上运行相同的应用程序时,它运行正常

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". 当我在Windows 10设备上运行相同的应用程序并尝试导航到下一页时,它说已捕获Xaml分析异常,并说“找不到与错误关联的文本”。

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.. 我不知道为什么会这样。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何将Windows Phone 8.1应用程序部署到Windows 10移动设备? - How to deploy Windows Phone 8.1 app to Windows 10 Mobile device? 在Windows 10移动版上运行的Windows Phone 8.1应用中的后台计时器任务中没有联网 - No networking in background timer task in Windows Phone 8.1 app running on Windows 10 Mobile 应用未运行Windows Phone 8.1时的RawPushNotification - RawPushNotification when app not running Windows Phone 8.1 在Windows 10中部署Windows Phone 8.1应用程序时找不到IpOverUsbSvc - IpOverUsbSvc not found while deploying Windows Phone 8.1 app in Windows 10 我们如何在Windows Phone 8.1应用中检测Windows 10? - How can we detect Windows 10 in Windows Phone 8.1 app? Windows 10平板电脑上的Windows phone 8.1 Silverlight应用程序 - Windows phone 8.1 Silverlight app on windows 10 tablet Windows Phone 8.1和Windows Phone 8设备 - 它是否有效 - Windows Phone 8.1 and Windows Phone 8 device - Will it work Windows Phone 8.1中的设备状态 - Device Status in Windows Phone 8.1 Windows Phone 8.0到Windows Phone 8.1应用程序 - Windows Phone 8.0 To Windows Phone 8.1 App Windows Phone 8、8.1 和 10 Store 支持,一个带有条码扫描器的应用程序 - Windows Phone 8, 8.1 and 10 Store support with one app with barcode scanner
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM