Esempio n. 1
0
        private void loadHistoryItem(WebHistoryItem item)
        {
            string url     = item.URL;
            string content = "";
            Node   n;

            try {
                content = help_tree.RenderUrl(url, out n);
            } catch (Exception e) {
                content = "Exception Rendering the requested URL: " + e;
            }
            if (content != null && !content.Equals(""))
            {
                content = content.Replace("a href='", "a href='http://monodoc/load?");
                content = content.Replace("a href=\"", "a href=\"http://monodoc/load?");
                webView.Render(content);
            }
        }
Esempio n. 2
0
 public virtual bool GoToBackForwardItem(WebHistoryItem item);