Click here to Skip to main content
15,886,017 members
Articles / Desktop Programming / WPF

Much Improved .NET 4.0 WPF Text Rendering

Rate me:
Please Sign up or sign in to vote.
4.80/5 (2 votes)
22 Oct 2009CPOL 16.2K   1   2
Much improved .NET 4.0 WPF text rendering

In .NET 4.0, WPF text rendering has been greatly improved.

However, this new feature is not enabled by default.

You can read the complete feature write up on the WPF Text Blog.

The scenario where you get the most payback for using this feature is with text that is sized 15pt and below.

Line of Business forms containing TextBlocks, Labels, CheckBoxes, RadioButtons, Buttons and TextBoxes will have FontSizes below 15pt and will receive the most benefit of this new feature.

The feature is enabled by placing the “TextOptions.TextFormattingMode” attached property on the UI Element or on a parent UI Element.

XML
<TextBlock Text=".NET 3.5 rendering" />
<TextBlock Text=".NET 4.0 improved rendering" TextOptions.TextFormattingMode="Display" />

The below XAML demonstrates how to have all text rendering use the new text rendering feature by placing the “TextOptions.TextFormattingMode” attached property on the Window.

In the below example, all child controls of the Window will use the new text rendering.

XML
<Window x:Class="MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="350" Width="525"
    TextOptions.TextFormattingMode="Display">
    <Grid>

        <TextBlock Text="Inherited the .NET 4.0 improved rendering" />

    </Grid>
</Window>

Visual Studio 2010 Beta2 and .NET 4.0 have a lot of new goodness, go check it out!

Have a great day.

Just a grain of sand on the world's beaches.

Posted in Cider Designer, CodeProject, VB.NET, Visual Studio 2010, WPF General

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions

 
QuestionShouldn't this be activated by default? Pin
fabrice.marguerie27-Oct-09 12:31
fabrice.marguerie27-Oct-09 12:31 
AnswerRe: Shouldn't this be activated by default? Pin
User 27100927-Oct-09 21:08
User 27100927-Oct-09 21:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.