27 lines
826 B
HTML
27 lines
826 B
HTML
<!doctype html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>关于 - WebToApp 示例</title>
|
|
<style>
|
|
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; margin: 24px; }
|
|
h1 { margin-bottom: 8px; }
|
|
p { line-height: 1.6; }
|
|
.note { padding: 12px; background: #f5f5f5; border-radius: 8px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>关于</h1>
|
|
<p>这是用于演示的关于页面,展示从应用内打开本地 HTML 的能力。</p>
|
|
<div class="note">
|
|
<p>本应用由 WPF + WebView2 构建,支持:</p>
|
|
<ul>
|
|
<li>加载在线或本地网页</li>
|
|
<li>自定义右键菜单</li>
|
|
<li>拦截并保存 data/blob/同域下载</li>
|
|
</ul>
|
|
</div>
|
|
</body>
|
|
</html>
|