示例#1
0
        private async void calculateArticleHeight()
        {
            var _HeightString = await ArticleWebView.InvokeScriptAsync("eval",
                                                                       new[] { "document.body.scrollHeight.toString()" });

            double height = Window.Current.Bounds.Height;

            ArticleWebView.Height = height;
        }