DoIt
DoIt

Reputation: 3428

Tab items in a tab control appears blurred

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

enter image description here

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

Answers (1)

zhangyiying
zhangyiying

Reputation: 424

This is a problem of text rendering in WPF.These articles may help you.

One

Two

Three

Upvotes: 2

Related Questions