code///
/// 自動滾屏方法
///
///
private void startScroll(string url)
{
webBrowser1.Navigate(string.Format(@"javascript:(function() {{var body = document.documentElement && document.compatMode == 'CSS1Compat' ?document.documentElement : document.body;clearInterval(window.timerAutoScroll);window.timerAutoScroll = setInterval(function() {{scrollBy(0, {0});if (body.scrollHeight <= body.clientHeight + body.scrollTop) {{clearInterval(window.timerAutoScroll);}}}}, {1});}})();", 800, 1));
}
JS代碼就能解決;