WinUI.Markdown is a WinUI 3 Markdown control for Windows App SDK apps. It supports native WinUI rendering for common Markdown, WebView2 rendering for rich HTML scenarios, and an Auto mode that chooses the right renderer for the input.
RenderMode.Auto: uses native WinUI rendering when sufficient and falls back to WebView2 for unsupported Markdown/HTML.RenderMode.Native: creates a WinUI element tree from a Markdig AST.RenderMode.WebView2: renders Markdig HTML inside a lazy WebView2 host.- Shared themes for native and WebView2 rendering.
- Built-in WinUI, GitHub, and Dracula themes.
- Link click events routed through
MarkdownLinkEventArgs. - Sample playground app for testing render modes and theme properties.
dotnet add package WinUI.MarkdownAdd the namespace:
xmlns:md="using:WinUI.Markdown.Controls"Use the control:
<md:MarkdownView
Text="{Binding MarkdownSource}"
RenderMode="Auto"
Theme="{x:Bind MarkdownTheme}"
LinkClicked="OnLinkClicked"
Rendered="OnMarkdownRendered" />In code:
using WinUI.Markdown.Controls;
using WinUI.Markdown.Themes;
Viewer.Text = "# Hello WinUI.Markdown";
Viewer.RenderMode = RenderMode.Auto;
Viewer.Theme = MarkdownTheme.GitHubLight;Handle links:
private void OnLinkClicked(object sender, MarkdownLinkEventArgs e)
{
e.Handled = true;
// Open with your app's navigation policy.
}| Mode | Behavior |
|---|---|
Auto |
Parses the Markdown and uses native rendering when supported, otherwise WebView2. |
Native |
Always renders to WinUI elements. WebView2 is not created. |
WebView2 |
Always renders Markdig HTML inside WebView2. |
MarkdownView.ActualRenderMode reports the effective renderer. MarkdownRenderedEventArgs includes both requested and actual render modes.
Useful control options:
AllowWebView2Fallback: lets Auto mode fall back to WebView2 when native rendering is not sufficient.AutoFallbackReason: describes why Auto mode selected or would select WebView2.ActualRenderModeChanged: raised when the effective renderer changes.MaxImageWidth: optional control-level override for themed image width.
Native mode currently supports the common Markdown and GFM surface without creating WebView2. WebView2 mode renders Markdig HTML and is the fallback for raw HTML and richer extension output.
| Markdown element | Native renderer | WebView2 renderer |
|---|---|---|
| Paragraphs and line breaks | Supported | Supported |
| ATX/setext headings | Supported | Supported |
| Bold, italic, strikethrough | Supported | Supported |
| Inline code | Supported | Supported |
| Code blocks and fenced code | Supported, with lightweight highlighting | Supported |
| Links and reference links | Supported | Supported |
| Images | Supported, with configurable max width | Supported, with configurable max width |
| Ordered lists | Supported, including nested roman/alpha markers | Supported |
| Unordered lists | Supported, including nested bullet shapes | Supported |
| Task lists | Supported as read-only WinUI checkboxes | Supported as read-only HTML checkboxes |
| Blockquotes | Supported | Supported |
| Tables | Supported | Supported |
| Horizontal rules | Supported | Supported |
| Footnotes | Supported | Supported |
| Definition lists | Supported | Supported |
| Raw HTML blocks/inlines | Not supported; Auto falls back | Supported |
| Math extensions | Not supported; Auto falls back | Supported when emitted by Markdig |
| Figures and diagrams | Not supported; Auto falls back | Supported when emitted by Markdig |
Built-in themes:
MarkdownTheme.SystemMarkdownTheme.WinUILightMarkdownTheme.WinUIDarkMarkdownTheme.GitHubLightMarkdownTheme.GitHubDarkMarkdownTheme.Dracula
MarkdownTheme.Light and MarkdownTheme.Dark are aliases for WinUI light/dark.
Native and WebView2 rendering share the same theme model, including background, foreground, links, code blocks, code borders, code corner radius, quotes, blockquote background, blockquote corner radius, tables, table header background, rules, fonts, heading sizes, heading font weights, spacing, and image sizing.
- Windows 10 19041 or later target
- Windows App SDK
- .NET 10
The package currently targets net10.0-windows10.0.19041.0.
dotnet restore MarkdownView.slnx
dotnet build MarkdownView.slnx -c Debug --no-restore
dotnet test tests\WinUI.Markdown.Tests\WinUI.Markdown.Tests.csproj -c Debug --no-restore --no-buildCreate a package:
dotnet pack src\WinUI.Markdown\MarkdownView.csproj -c Release --no-restore -o artifactsPublishing is handled by .github/workflows/publish.yml on v* tags. Add a NuGet.org API key as the NUGET_API_KEY repository secret before publishing.
See docs/RELEASE.md for the release checklist.
MIT. See LICENSE.