HtmlRenderer.WPF
1.5.2
dotnet add package HtmlRenderer.WPF --version 1.5.2
NuGet\Install-Package HtmlRenderer.WPF -Version 1.5.2
<PackageReference Include="HtmlRenderer.WPF" Version="1.5.2" />
<PackageVersion Include="HtmlRenderer.WPF" Version="1.5.2" />
<PackageReference Include="HtmlRenderer.WPF" />
paket add HtmlRenderer.WPF --version 1.5.2
#r "nuget: HtmlRenderer.WPF, 1.5.2"
#:package HtmlRenderer.WPF@1.5.2
#addin nuget:?package=HtmlRenderer.WPF&version=1.5.2
#tool nuget:?package=HtmlRenderer.WPF&version=1.5.2
Welcome to the HTML Renderer WPF library!
This library provides the rich formatting power of HTML in your WPF .NET applications using simple controls or static rendering code. For more info see HTML Renderer on GitHub: https://github.com/ArthurHub/HTML-Renderer
DEMO APPLICATION
HTML Renderer Demo application showcases HTML Renderer capabilities, use it to explore and learn on the library: https://codeplexarchive.org/ProjectTab/Wiki/HtmlRenderer/Documentation/Demo%20application
FEEDBACK / RELEASE NOTES
If you have problems, wish to report a bug, or have a suggestion, please open an issue on the HTML Renderer issue page: https://github.com/ArthurHub/HTML-Renderer/issues
For full release notes and all versions see: https://github.com/ArthurHub/HTML-Renderer/releases
QUICK START
For more Quick Start see: https://codeplexarchive.org/ProjectTab/Wiki/HtmlRenderer/Documentation/Documentation
Quick Start: Use HTML panel control on WPF window
<Window x:Class="Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="300" Width="300"
xmlns:wpf="clr-namespace:TheArtOfDev.HtmlRenderer.WPF;assembly=HtmlRenderer.WPF">
<Grid>
<wpf:HtmlPanel Text="<p> <h1> Hello World </h1> This is html rendered text</p>"/>
</Grid>
</Window>
Quick Start: Create image from HTML snippet
class Program
{
private static void Main(string[] args)
{
BitmapFrame image = HtmlRender.RenderToImage("<p><h1>Hello World</h1>This is html rendered text</p>");
var encoder = new PngBitmapEncoder();
encoder.Frames.Add(image);
using (FileStream stream = new FileStream("image.png", FileMode.OpenOrCreate))
encoder.Save(stream);
}
}
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET Framework | net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
.NETFramework 4.6.2
- HtmlRenderer.Core (>= 1.5.2)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on HtmlRenderer.WPF:
| Package | Downloads |
|---|---|
|
BimLab.PathChecker
Lib for checking files names |
GitHub repositories (3)
Showing the top 3 popular GitHub repositories that depend on HtmlRenderer.WPF:
| Repository | Stars |
|---|---|
|
vers-one/EpubReader
.NET library for reading EPUB files
|
|
|
darklinkpower/PlayniteExtensionsCollection
Collection of extensions made for Playnite.
|
|
|
QL-Win/QuickLook.Plugin.EpubViewer
QuickLook EPUB plugin.
|