【发布时间】:2016-11-16 20:38:53
【问题描述】:
我想在我的 UWP 中使用 Microsoft Edge 打开一个 URL。搜索,我找到了这段代码:
using System.Diagnostics;
using System.ComponentModel;
private void button_Help_Click(object sender, RoutedEventArgs e)
{
Process.Start("microsoft-edge:http://www.bing.com");
}
但它显示以下错误:
当前上下文中不存在名称进程
如果我按Ctrl+.,它只显示生成类选项。
感谢任何帮助。
【问题讨论】:
标签: c# url uwp microsoft-edge