Done HtmlViewer

This commit is contained in:
Paddy Xu
2017-05-14 02:21:24 +03:00
parent 3f82070deb
commit f18aa022f7
27 changed files with 24660 additions and 13 deletions

View File

@@ -28,7 +28,9 @@ namespace QuickLook.Plugin.HtmlViewer
public void Prepare(string path, ContextObject context)
{
context.PreferredSize = new Size(600, 800);
context.PreferredSize = new Size(800, 800);
context.Focusable = true;
}
public void View(string path, ContextObject context)
@@ -42,6 +44,9 @@ namespace QuickLook.Plugin.HtmlViewer
public void Dispose()
{
GC.SuppressFinalize(this);
_panel?.Dispose();
}
~Plugin()