wpf webview html页面拆分器
我在 wpf 中做一个电子阅读器应用程序。我必须将 html 内容显示为页面。使用以下样式,我可以将 html 内容拆分为 webkitBrowsers 中的列。
"var jsPagenate = "function a() {"
+ "var d = document.getElementsByTagName('html')[0];"
+ "var ourH = window.innerHeight; "
+ "var ourW = window.innerWidth; " + "var fullH = this.clientHeight; "
+ "var pageCount = Math.floor(fullH/ourH)+1;"
+ "var currentPage = 0; " + "var newW = pageCount*ourW; "
+ "d.style.height = ourH+'px';" + "d.style.width = newW+'px';"
+ "d.style.webkitColumnGap = '0px'; " + "d.style.margin = 0; "
+ "d.style.webkitColumnCount = pageCount;}";"
但它不适用于 wpf 网络浏览器。
如何在 IE 中实现?