working on HtmlViewer

This commit is contained in:
Paddy Xu
2017-05-13 19:34:41 +03:00
parent 9e64e068d0
commit 3f82070deb
20 changed files with 637 additions and 126 deletions

View File

@@ -0,0 +1,12 @@
<UserControl x:Class="QuickLook.Plugin.HtmlViewer.WebkitPanel"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:QuickLook.Plugin.HtmlViewer"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<Grid Background="Aqua">
<WebBrowser x:Name="browser" />
</Grid>
</UserControl>