-4

我正在尝试找到在 Windows Phone 中缓存数据的解决方案。但我找不到解决方案,我是新开发人员,如何将 URL 添加到 Windows Mobile 中的收藏夹中,我想将其保存在收藏夹中。

4

2 回答 2

2

If I understand your question correctly: You are asking "How to save the browsed URLs programmatically?"

You can use the Navigating Navigated events of WebBrowser control to get the details of the current URL being navigated, and so you can store it.

private void webBrowser1_Navigated(object sender, WebBrowserNavigatedEventArgs e)
{
    string currentUrl = webBrowser1.Url.ToString();
}
于 2012-06-02T11:52:31.917 回答
-1

您将无法将应用中的 URL 保存到 IE 的收藏夹列表中。唯一可以访问该列表的应用程序是 IE 本身。对不起。

于 2013-10-28T11:33:21.790 回答