WebViewコントロールに問題があります。Windows 8メトロスタイルアプリを開発していて、WebViewのコンテンツでスクリプトを呼び出そうとしていますが、常に空の文字列が返されます。
"WebView.InvokeScript(" eval "、new string [] {"document.getElementById('contentDiv')。offsetHeight "})も作成しようとしましたが、同じように機能します-空の文字列です。実際にはありませんここで何が悪いのかを推測します。
public void Sethtml(string html) {
var toSet = string.Format(Style, html);
wv.LoadCompleted += wv_LoadCompleted;
wv.NavigateToString(toSet);
}
void wv_LoadCompleted(object sender, Windows.UI.Xaml.Navigation.NavigationEventArgs e)
{
WebView wv = sender as WebView;
string height = wv.InvokeScript("heightFun", new string[0]);
}
public static readonly string Style = @"<!DOCTYPE html>
<html>
<head>
<title></title>
<style>
body {{
font-family: Segoe UI;
}}
</style>
<script type='text/javascript'>
var heightFun = function() {{
return document.getElementById('contentDiv').offsetHeight;
}}
</script>
</head>
<body>
<div id='contentDiv'>
{0}
</div>
</body>";