我的IsolatedStorage
中有一个文件。我需要从我的应用程序中打开该文件。我试图在WebBrowser中打开它,就像这样
private void OpenFile(string url)
{
WebBrowserTask task = new WebBrowserTask();
task.Uri = new Uri(url);
task.Show();
}
但它会引发异常。错误消息为无效URI:The format of the URI could not be determined.
如何在我的应用程序中打开文件?
答案 0 :(得分:1)