I cannot seem to programmatcally scroll in WPF in a normal Windows Form I would use the code below but that property does not exist in WPF.
HtmlDocument doc = this.webBrowser1.Document; doc.Body.ScrollTop = 800; return;
Is there an alternative to doing this?