开发者

How to get Control values from a web application that has been opened thru WPF WebBrowser Control(C#)

I have a problem.

I am calling an external application(web) through a WPF WebBrowser Contro开发者_Python百科l. The

application is opening properly. Now in the web application, there are certain hyperelinks.

If a user click on that hyperlink, I should be able to trap it's value.

How to achieve the same using this WEB BROWSER.. I mean, in which event , what code I need to write to get it work

Using C#3.0, WPF and Dotnet framework 3.5

Thanks


Try this.

        private void _webBrowser_Navigating(object sender, NavigatingCancelEventArgs e)
    {
        if (string.IsNullOrEmpty(e.Uri.AbsolutePath))
        {
            e.Cancel = true;
            string actionName = e.Uri.LocalPath;
            MessageBox.Show(actionName);
        } 
    }

Regards, Nanda

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜