Reputation: 3428
I am working on a WPF
application where I have a TabControl
with three Tabs and I have increased the size of tabs according to the content but the tabs appear to be blurred as in the following picture
XAML code is as follows
<TabControl HorizontalAlignment="Left" Height="400" Margin="10,0,-3,0" VerticalAlignment="Top" Width="665" RenderTransformOrigin="0.5,0.5">
<TabControl.RenderTransform>
<TransformGroup>
<ScaleTransform/>
<SkewTransform/>
<RotateTransform Angle="0.215"/>
<TranslateTransform/>
</TransformGroup>
</TabControl.RenderTransform>
Is there a good way I can fix it?
Upvotes: 0
Views: 139
Reputation: 424
This is a problem of text rendering in WPF.These articles may help you.
Upvotes: 2