本文介绍了WP8.1:Cortana uri协会?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
Cortana是否具有uri关联或要从其他应用启动的另一种方式?
Does Cortana have a uri association, or another way to be launched from other apps?
我已经尝试过
await Launcher.LaunchUriAsync(new Uri("cortana:///"));
await Launcher.LaunchUriAsync(new Uri("ms-settings-cortana:///"));
但它们不起作用...
but they don't work...
推荐答案
我知道这是被问到几个月后的事,但是对于希望启动Cortana的其他任何人,您都可以通过以下方式来做到这一点:
I know this is a few months after this was asked, but for anyone else looking to launch Cortana you can do it by calling this:
await Launcher.LaunchUriAsync(new Uri("bing://home"));
这篇关于WP8.1:Cortana uri协会?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!