我正在尝试使用Tap选择从Windows Phone 7中的Web浏览器控件中检索所选文本。还要在选择文本时删除“复制”图标。
当保持点击时,我想确认webbrowser控件是否有任何选定的文本。我怎么能在那里放一张支票。
此外,我想在Web浏览器控件中突出显示所选文本。
这里的问题是确定所选文本的开始和结束。
我感谢您提供任何帮助或资源。
由于
答案 0 :(得分:1)
通过电话
function GetSelectedText() {
window.external.Notify(document.selection.createRange().htmlText);
}
并添加
Browser.ScriptNotify += new EventHandler<NotifyEventArgs>(Browser_ScriptNotify);
......
void Browser_ScriptNotify(object sender, NotifyEventArgs e)
{
if(e.Value != null)
MessageBox.Show(e.Value);
}
为我解决。 Thanx @Sergei Grebnov为你指导。