天天看点

背水一战 Windows 10 (63) - 控件(WebView): 基础知识, 加载 html, http, https, ms-appx-web:///, embedded resource, ms-appdata:///, ms-local-stream://

<a href="http://files.cnblogs.com/webabcd/Windows10.rar">[源码下载]</a>

背水一战 Windows 10 (63) - 控件(WebView): 基础知识, 加载 html, http, https, ms-appx-web:///, embedded resource, ms-appdata:///, ms-local-stream://

介绍

背水一战 Windows 10 之 控件(WebView)

基础知识

加载指定的 html

加载指定的 url(http, https, ms-appx-web:///, embedded resource, ms-appdata:///)

结合 IUriToStreamResolver 可以实现自定义所有请求(包括 html 的 url 以及 html 内所有引用的 url)返回的内容(ms-local-stream://)

示例

1、演示 WebView 的基础知识

Controls/WebViewDemo/WebViewDemo1.xaml

Controls/WebViewDemo/WebViewDemo1.xaml.cs

2、演示 WebView 如何加载 html, http, https, ms-appx-web:///, embedded resource, ms-appdata:///, ms-local-stream://

Controls/WebViewDemo/demo1.html

Controls/WebViewDemo/demo2.html

Controls/WebViewDemo/demo3.html

Controls/WebViewDemo/demo4.html

Controls/WebViewDemo/WebViewDemo2.xaml

Controls/WebViewDemo/WebViewDemo2.xaml.cs

OK

继续阅读