本文介绍了滚动WebBroswer可以正常工作,但是当它具有正确的DOCTYPE时却不行!的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我可以将WebBrowser滚动到底部,如下所示:


if(webControl.Document!= null)

webControl.Document.Body.ScrollTop = int.MaxValue;


但是,如果我包含一个适当的DOCTYPE(对于XHTML 1.1 DTD),如下:


<!DOCTYPE html PUBLIC" - // W3C // DTD XHTML

1.1 // EN" http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">


它不起作用。它根本不滚动。给出了什么?


Zytan

I can scroll a WebBrowser to the bottom like so:

if (webControl.Document != null)
webControl.Document.Body.ScrollTop = int.MaxValue;

But, if I include a proper DOCTYPE (for XHTML 1.1 DTD) like so:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML
1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

It will not work. It doesn''t scroll at all. What gives?

Zytan

推荐答案




这篇关于滚动WebBroswer可以正常工作,但是当它具有正确的DOCTYPE时却不行!的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 00:45