Merge OfficeViewer-Native plugin #1662

Repo URL: https://github.com/QL-Win/QuickLook.Plugin.OfficeViewer-Native
This commit is contained in:
ema
2025-06-11 17:58:07 +08:00
parent 4fd8c14b98
commit 5fd2d8a88a
10 changed files with 622 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<UserControl x:Class="QuickLook.Plugin.IPreviewHandlers.PreviewPanel"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
x:Name="panel"
d:DesignHeight="300"
d:DesignWidth="300"
mc:Ignorable="d">
<Grid>
<WindowsFormsHost x:Name="presenter" />
</Grid>
</UserControl>