At designtime (in VS2015) everything looks okay (upper).
But, at runtime (bottom), the text-rendering goes totally wrong.
My markup (simplified):
<Window>
<Viewbox>
<Grid>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<Label Grid.Row="0" Content="10:00" FontSize="16"
FontWeight="Bold" FontFamily="Verdana" />
<Label Grid.Row="1" Content="Edit time" FontSize="16"
FontWeight="Bold" FontFamily="Verdana" />
</Grid>
</Viewbox>
</Window>
I've already tried to add TextOptions.TextFormattingMode="Ideal"
to Window
, ViewBox
, Grid
and Label
. But the rendering still looks blurry.