Divis.DarkHtmlViewer
1.0.4
dotnet add package Divis.DarkHtmlViewer --version 1.0.4
NuGet\Install-Package Divis.DarkHtmlViewer -Version 1.0.4
<PackageReference Include="Divis.DarkHtmlViewer" Version="1.0.4" />
paket add Divis.DarkHtmlViewer --version 1.0.4
#r "nuget: Divis.DarkHtmlViewer, 1.0.4"
// Install Divis.DarkHtmlViewer as a Cake Addin #addin nuget:?package=Divis.DarkHtmlViewer&version=1.0.4 // Install Divis.DarkHtmlViewer as a Cake Tool #tool nuget:?package=Divis.DarkHtmlViewer&version=1.0.4
Dark HTML Viewer
A WPF user control for displaying in memory HTML. The control stores the loaded HTML in temporary files and uses the WebView2 control to display them.
Nuget
Usage
Basics
Add the namespace to your XAML
xmlns:dhv="clr-namespace:DarkHtmlViewer;assembly=DarkHtmlViewer"
And use the HtmlViewer
control
<dhv:HtmlViewer x:Name="htmlViewer" />
Commands & methods
LoadCommand
⇒ void Load(string html)
ScrollCommand
⇒ Task ScrollAsync(string elementId)
ScrollOnNextLoadCommand
⇒ void ScrollOnNextLoad(string elementId)
SearchCommand
⇒ Task SearchAsync(string text)
SearchOnNextLoadCommand
⇒ void SearchOnNextLoad(string text)
SaveScrollPositionForNextLoadCommand
⇒ SaveScrollPositionForNextLoadAsync()
PrintCommand
⇒ Task PrintAsync()
ZoomCommand
⇒ void Zoom(double zoom)
Loading HTML content
To load content into the viewer, bind an HTML string to it's HtmlContent
property
<dhv:HtmlViewer x:Name="htmlViewer" HtmlContent="{Binding MyHtmlString}" />
or use the LoadCommand
and pass the HTML string as the CommandParameter
<Button
Command="{Binding ElementName=htmlViewer, Path=LoadCommand}"
CommandParameter="{Binding MyHtmlString}"
Content="Load HTML using a command" />
Link clicks
Whenever a link is clicked in the loaded HTML file, the control fires the LinkClickedCommand
. Bind you own command to that in order to handle link clicks, example:
View.cs
<dhv:HtmlViewer
x:Name="htmlViewer"
LinkClickedCommand="{Binding MyLinkClickedCommand}" />
ViewModel.cs
public ICommand MyLinkClickedCommand => new RelayCommand<string>(HandleLinkClick);
private void HandleLinkClick(string? link)
{
Debug.WriteLine($"Link clicked: {link}");
}
Scroll to
To scroll to a specific element id, you have several options.
ScrollCommand
: tries to scroll to a specific element in the currently loaded HTML file
<Button
Command="{Binding ElementName=htmlViewer, Path=ScrollCommand}"
CommandParameter="elementId"
Content="Scroll to elementId" />
ScrollOnNextLoadCommand
: will try to scroll to a specific element in the next loaded HTML file
<Button
Command="{Binding ElementName=htmlViewer, Path=ScrollOnNextLoadCommand}"
CommandParameter="elementId"
Content="Scroll to elementId on next load" />
Save scroll position
Saves the current scroll position and tries to restore it next time HTML content is loaded. If ScrollOnNextLoad
is used as well, this will be ignored
SaveScrollPositionForNextLoadCommand
: will try to scroll to a specific element in the next loaded HTML file
<Button
Command="{Binding ElementName=htmlViewer, Path=SaveScrollPositionForNextLoadCommand}"
Content="Save scroll position for next load" />
Search
SearchCommand
: finds a search term on the current page
<Button
Command="{Binding ElementName=htmlViewer, Path=SearchCommand}"
CommandParameter="search text"
Content="Search for text" />
SearchOnNextLoadCommand
: finds a search term in the next loaded HTML file
<Button
Command="{Binding ElementName=htmlViewer, Path=SearchOnNextLoadCommand}"
CommandParameter="search text"
Content="Search for text on next load" />
Printing
The PrintCommand
can be used to bring up the default print dialog window.
<Button
Command="{Binding ElementName=htmlViewer, Path=PrintCommand}"
Content="Show print dialog" />
Logging
Enable logging for the control by configuring an ILoggerFactory
provider like so:
var loggerFactory = LoggerFactory.Create(c =>
{
c.SetMinimumLevel(LogLevel.Debug);
c.AddDebug();
});
HtmlViewer.ConfigureLogger(() => loggerFactory);
Virtual host name to folder path mapping
See this page to learn more.
Enable virtual host name to folder path mapping like so:
HtmlViewer.ConfigureVirtualHostNameToFolderMappingSettings(new VirtualHostNameToFolderMappingSettings
{
Hostname = "myfiles.local",
FolderPath = @"C:\Resources\MyFiles",
AccessKind = Microsoft.Web.WebView2.Core.CoreWebView2HostResourceAccessKind.Allow
});
You can then access your assets like this in HTML:
<head>
<link href="https://myfiles.local/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<img src="https://myfiles.local/my_image.jpg" />
</body>
Default browser background color
Configure the default background color of the control like so:
using System.Drawing;
var backgroundColor = Color.FromArgb(255, 24, 24, 24);
HtmlViewer.ConfigureDefaultBackgroundColor(backgroundColor);
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0-windows7.0 is compatible. net7.0-windows was computed. net7.0-windows7.0 is compatible. net8.0-windows was computed. |
-
net6.0-windows7.0
- CommunityToolkit.Mvvm (>= 8.1.0)
- FluentValidation (>= 11.5.0)
- Microsoft.Extensions.Logging.Abstractions (>= 7.0.0)
- Microsoft.Web.WebView2 (>= 1.0.1587.40)
-
net7.0-windows7.0
- CommunityToolkit.Mvvm (>= 8.1.0)
- FluentValidation (>= 11.5.0)
- Microsoft.Extensions.Logging.Abstractions (>= 7.0.0)
- Microsoft.Web.WebView2 (>= 1.0.1587.40)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.4 | 795 | 2/20/2023 |
1.0.3 | 796 | 10/14/2022 |
1.0.2 | 790 | 10/14/2022 |
1.0.1 | 813 | 7/14/2022 |
1.0.0 | 793 | 7/13/2022 |
0.1.4-alpha | 514 | 6/14/2022 |
0.1.3-alpha | 528 | 2/24/2022 |
0.1.2-alpha | 544 | 12/9/2021 |
0.1.1-alpha | 560 | 5/12/2021 |