Solved with this code class:
                public class WebBrowser: WebView
                {
                        public WebBrowser()
                        {
                                this.NavigationRequested += 
this.OnLinkActivatedInBrowser;
                        }               
                        
                        public string url_address;
                
                    protected virtual void OnLinkActivatedInBrowser (object 
sender,
NavigationRequestedArgs args)
            {
                string uri = args.Request.Uri;
                
                                Console.WriteLine("navigation requested 
[{0}]",uri);
                        
                                url_address = uri;
            }

                }

Andrew



--
View this message in context: 
http://mono.1490590.n4.nabble.com/MonoDevelop-Webkit-webview-browser-not-working-for-PDF-links-tp4660192p4660239.html
Sent from the Mono - Gtk# mailing list archive at Nabble.com.
_______________________________________________
Gtk-sharp-list maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/gtk-sharp-list

Reply via email to