c# webbrowser 获取用户选中文字
原文:c# webbrowser 获取用户选中文字
最近一直被一个问题困扰,有一个文本框,一个webbrowser控件,一个上下文菜单,
用户用鼠标左键选中文字,右键点击搜索,就把选中的文字赋给文本框的TEXT,便可以递进搜索,在网上逛了几天,也没有找到好的方法,终于在学长的帮助下,找到了最终的答案!特拿来与大家分享!
前提条件,你需要添加引用 如图:
在程序中要添加using mshtml;
//获取用户选中的文字
IHTMLDocument2 htmlDocument = webBrowser1.Document.DomDocument as IHTMLDocument2;
IHTMLSelectionObject currentSelection = htmlDocument.selection;
if (currentSelection != null)
{ IHTMLTxtRange range = currentSelection.createRange() as IHTMLTxtRange;
if (range != null)
{
//MessageBox.Show(range.text);
tbKeyWord.Text = range.text;
}
}
posted on 2014-04-11 00:09 NET未来之路 阅读(...) 评论(...) 编辑 收藏