-
Notifications
You must be signed in to change notification settings - Fork 539
Closed
Labels
Description
I found text was not drawn as same as on browsers.
Some fonts cause drawing blurry.
Attatched PNG is taken from screen-shot of my test WPF app.

`XAML
<StackPanel DockPanel.Dock="Top" Margin="8">
<TextBlock FontFamily="Meiryo" FontSize="12pt">あいうえお</TextBlock>
<TextBlock FontFamily="Meiryo UI" FontSize="12pt">あいうえお</TextBlock>
</StackPanel>
<app:HtmlPanel x:Name="WebPage" Text="{Binding Text}"
UseLayoutRounding="True"
SnapsToDevicePixels="True"
/>
`