I am using the webbrowser to show some string with a appbar-button. When I click the button, the webbrowser will NavigateTo another string. Everything goes well except that once the webbrowser is scrolled down(When the user is reading the end of a article), when the button clicked, the webbrowser is still at the bottom, the user has to scroll the webbrowser up.

So, before the new article is loaded, I want to set the verticaloffset of the webbrowser to zero. But there is no scrollviewer in the webbrowser, so I can't use the ScrollToVerticalOffset method.

would anyone know how to Control the VerticalOffset of a webbrowser?

Thanks.

link|improve this question

55% accept rate
Did you try invoking a script (javascript) to scroll to top? Does that work? See InvokeScript You'll need to have scripting enabled. – abhinav Feb 24 at 7:18
feedback

1 Answer

You can do this via InvokeScript, which allows you to invoke JavaScript within your page. If you add the following JavaScript function:

function setVerticalScrollPosition(position) {
  document.body.scrollTop = position;
}

Then invoke the following (C#)

this.webBrowser.InvokeScript("setVerticalScrollPosition", this.vScrollPos.Text);

Your browser control should scroll (courtesy of this blog post)

link|improve this answer
Hi,ColinE, thanks for your tip. But when I call the InvokeScript, it caused a " An unknown error has occurred. Error: 80020006. " – ellic Feb 24 at 16:15
@ellic try setting IsScriptEnabled="True" – ColinE Feb 24 at 17:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.