Blue Theme Orange Theme Green Theme Red Theme
 
Discover the top 5 tips for understanding .NET Interop
Home | Forums | Videos | Advertise | Certifications | Downloads | Blogs | Interviews | Jobs | Beginners | Training
 | Consulting  
Submit an Article Submit a Blog 
 Jump to
Skip Navigation Links
TechnologyExpand Technology
WebsiteExpand Website
DevExpress UI Controls
Search :       Advanced Search »
Home » WPF » WPF TextBlock

WPF TextBlock

A TextBlock control in WPF provides a lightweight control for displaying small amounts of flow content. This tutorial demonstrates how to create and use a TextBlock control in WPF using XAML and C#.

Author Rank :
Page Views : 24226
Downloads : 116
Rating :
 Rate it
Level : Beginner
   Print Read/Post comments Post a comment  Similar Articles  
   Email to a friend  Bookmark  Author's other articles  
Download Files:
TextBoxSample.zip
 
 
DevExpress Free UI Controls
Become a Sponsor
 Tag Cloud
 Latest Jobs
More ... 
 Latest Interview Questions
More ... 


WPF TextBlock

A TextBlock control in .NET 3.5 provides a lightweight control for displaying small amounts of flow content. This tutorial demonstrates how to create and use a TextBlock control in WPF using XAML and C#.

Creating a TextBlock

The TextBlock element represents a WPF TextBlock control in XAML.

 

<TextBlock/>

 

The Width and Height attributes of the TextBlock element represent the width and the height of a TextBlock. The Text property of the TextBlock element represents the content of a TextBlock. The Name attribute represents the name of the control, which is a unique identifier of a control. The Foreground property sets the foreground color of contents. This control does not have a Background property.

 

The code snippet in Listing 1 creates a TextBlock control and sets the name, height, width, foreground and content of a TextBlock control. Unlike a TextBox control, the TextBlock does not have a default border around it.

 

<TextBlock Name="TextBlock1" Height="30" Width="200"

    Text="Hello! I am a TextBlock." Foreground="Red">

</TextBlock>

Listing 1

The output looks like Figure 1.

TextBlockImg1.jpg

Figure 1

As you can see from Figure 1, by default the TextBlock is place in the center of the page. We can place a TextBlock control where we want by using the Margin, VerticalAlignment and HorizontalAlignment attributes that sets the margin, vertical alignment, and horizontal alignment of a control.

The code snippet in Listing 2 sets the position of the TextBlock control in the left top corner of the page.

<TextBlock Name="TextBlock1" Height="30" Width="200"

        Text="Hello! I am a TextBlock."

        Margin="10,10,0,0" VerticalAlignment="Top"

        HorizontalAlignment="Left">           

</TextBlock>

Listing 2

Creating a TextBlock Dynamically

The code listed in Listing 3 creates a TextBlock control programmatically. First, it creates a TextBlock object and sets its width, height, contents and foreground and later the TextBlock is added to the LayoutRoot.

private void CreateATextBlock()

{

    TextBlock txtBlock = new TextBlock();

    txtBlock.Height = 50;

    txtBlock.Width = 200;

    txtBlock.Text = "Text Box content";

    txtBlock.Foreground = new SolidColorBrush(Colors.Red);

 

    LayoutRoot.Children.Add(txtBlock);

}

Listing 3

Setting Fonts of TextBlock Contents

The FontSize, FontFamily, FontWeight, FontStyle, and FontStretch properties are used to set the font size, family, weight, style and stretch to the text of a TextBlock. The code snippet in Listing 4 sets the font properties of a TextBlock.

FontSize="14" FontFamily="Verdana" FontWeight="Bold"

Listing 4

The new output looks like Figure 2.

TextBlockImg2.jpg

Figure 2

The FontSource property allows loading custom fonts dynamically. The following code snippet sets the FontSource property.

Uri fontUri = new Uri("SomeFont.ttf", UriKind.Relative);
StreamResourceInfo MySRI = Application.GetResourceStream(fontUri);
TextBlock1.FontSource = new FontSource(MySRI.Stream);

 

Wrapping, Alignment and Padding

 

The TextWrapping property sets the wrap of no warp text. The following code snippet sets the wrapping text option.

TextWrapping="Wrap"

The TextAlignment property sets the text alignment in a TextBlock, which is of type TextAlignment enumeration. A text can be aligned left, center, or right. 

TextAlignment="Right"

The Padding property sets the space between a boundary and the text that can be applied to all sides or a selected side of the boundary. The padding spacing is based on left, right, top, and bottom. If you specify only a single value, the padding will be applied to all four sides and if you specify two values, it will be applied to LeftTop and BottomRight sides.

Listing 5 shows all these properties in a complete sample.

<TextBlock Name="TextBlock1" Height="30" Width="200"

    Text="Hello! I am a TextBlock." Foreground="Red"

    Margin="10,10,0,0" VerticalAlignment="Top"

    HorizontalAlignment="Left"

    FontSize="14" FontFamily="Verdana" FontWeight="Bold"

    TextWrapping="Wrap" TextAlignment="Center" Padding="2">

</TextBlock>

Listing 5

Inlines

 

The Inlines property represents the collection of inline text within a TextBlock control. A Run object represents an inline text and can be treated as its own text control and have its foreground and font related properties.

Listing 6 sets the Inlines property of the TextBlock and sets different fonts and foreground colors.

<TextBlock.Inlines>

    <Run FontWeight="Bold" FontSize="14" Text="Hi! I am a TextBlock. " />

    <Run FontStyle="Italic" Foreground="Red" Text="This is red text. " />

    <Run FontStyle="Italic" FontSize="18" Text="Here is some linear gradient text. ">

        <Run.Foreground>

            <LinearGradientBrush>

                <GradientStop Color="Green" Offset="0.0" />

                <GradientStop Color="Purple" Offset="0.25" />

                <GradientStop Color="Orange" Offset="0.5" />

                <GradientStop Color="Blue" Offset="0.75" />

              </LinearGradientBrush>

        </Run.Foreground>

    </Run>           

    <Run FontStyle="Italic" Foreground="Green" Text="How about adding some green? " />           

</TextBlock.Inlines>

Listing 6

The new output looks like Figure 3.

TextBlockImg3.jpg

Figure 3

TextDecorations

 

The TextDecorations property represents the text decorations that are applied to the content of a TextBlock. WPF supports only underline text decoration.

Listing 7 sets the TextDecorations to underline.

<TextBlock Name="TextBlock1"     

    Margin="10,10,0,0" VerticalAlignment="Top"

    HorizontalAlignment="Left"

    FontSize="12" FontFamily="Verdana"

    TextWrapping="Wrap" TextAlignment="Left" Padding="2"

           TextDecorations="Underline">

Listing 7

The new output looks like Figure 4.

TextBlockImg4.jpg

Figure 4

Background

 

The Background property represents the background color of a TextBlock. Listing 8 sets the Background property of a TextBlock to a LinearGradientBrush. 

<TextBlock.Background>

    <LinearGradientBrush StartPoint="0,0" EndPoint="1,1" >

        <GradientStop Color="Blue" Offset="0.1" />

        <GradientStop Color="Orange" Offset="0.25" />                   

        <GradientStop Color="Green" Offset="0.75" />

        <GradientStop Color="Red" Offset="1.0" />

    </LinearGradientBrush>

</TextBlock.Background>

Listing 7

The code snippet in Listing 8 sets an image as background of a TextBlock.

<TextBlock.Background>

    <ImageBrush ImageSource="Garden.jpg" Opacity="0.6"/>

</TextBlock.Background>

 

Summary

In this article, I discussed how we can create and format a TextBlock control in WPF and C#.  After that we saw how to create a TextBlock control dynamically. Then we saw how to set various properties of a TextBlock such as fonts, Inlines, and text decorations.

Comment Request!
Thank you for reading this post. Please post your feedback, question, or comments about this post Here.
Login to add your contents and source code to this article
 [Top] Rate this article
 
 About the author
 
Mahesh Chand
Mahesh is the founder of C# Corner and Mindcracker Network, an author of several .NET programming books and a Microsoft MVP for 6 consecutive years. In his day to day work, Mahesh is a Senior Software Consultant with over 14 years of IT industry experience building systems for Financial and Banking, Engineering & Architectural, Imaging, Construction, Biological & Pharmaceuticals, Healthcare and Education industries. His expertise is Windows Forms, ASP.NET, Silverlight, WPF, WCF, Visual Studio 2010, SQL Server, and Oracle.  If you are looking for a Sharepoint, Windows Forms, ASP.NET, WPF, Silverlight, C#, VB.NET, Oracle, and SQL Server Consultant in Philadelphia area or remote location, drop me a line at MAHESH [AT] C-SHARPCORNER [DOT] COM.
Looking for C# Consulting?
C# Consulting is founded in 2002 by the founders of C# Corner. Unlike a traditional consulting company, our consultants are well-known experts in .NET and many of them are MVPs, authors, and trainers. We specialize in Microsoft .NET development and utilize Agile Development and Extreme Programming practices to provide fast pace quick turnaround results. Our software development model is a mix of Agile Development, traditional SDLC, and Waterfall models.
Click here to learn more about C# Consulting.
 
Introducing MaxV - one click. infinite control. Hyper-V Hosting from MaximumASP.
Finally – a virtual platform that delivers next-generation Windows Server 2008 Hyper-V virtualization technology from a managed hosting partner you can truly depend on. Visit www.maximumasp.com/max for a FREE 30 day trial. Hurry offer ends soon. Climb aboard the MaxV platform and take advantage of High Availability, Intelligent Monitoring, Recurrent Backups, and Scalability – with no hassle or hidden fees. As a managed hosting partner focused solely on Microsoft technologies since 2000, MaximumASP is uniquely qualified to provide the superior support that our business is built on. Unparalleled expertise with Microsoft technologies lead to working directly with Microsoft as first to offer IIS 7 and SQL 2008 betas in a hosted environment; partnering in the Go Live Program for Hyper-V; and product co-launches built on WS 2008 with Hyper-V technology.
Dynamic PDF
ceTE software specializes in components for dynamic PDF generation and manipulation. The DynamicPDF™ product line allows you to dynamically generate PDF documents, merge PDF documents and new content to existing PDF documents from within your applications.
Discover the Top 5 .NET Memory Management Fundamentals
To write the best .NET code, you need to know exactly how the .NET framework really manages memory. Ricky Leeks presents the Top 5 fundamental facts of .NET memory management. Learn more.
Nevron Chart for .NET 2010.1 Now Available
The leading .NET charting control now features PDF, Flash and Silverlight export, visualization of large datasets and more. Deliver true charting functionality to your BI, Scorecard, Presentation or Scientific apps. Download evaluation now.
ASP.NET 4 Hosting
Get 2 Months Free of ASP.NET Hosting for Only $4.95/month! Receive FREE MS SQL and MySQL Databases Including ASP.NET 4/3.5, MVC 3.0, Silverlight 4, Windows 2008/IIS 7.0 Plus FREE IIS 7 Modules. Host UNLIMITED ASP.NET Web Sites – Click Here!
 
 Post a Feedback, Comment, or Question about this article
Subject:
Comment:
Nevron Chart
Become a Sponsor
 Comments
nice man by harry On June 27, 2010
hi mahesh , i read ur artical on many site n u solve many problem in easiest way great sir, kp it up
Reply | Email | Modify 
Re: nice man by Mahesh On June 27, 2010
Thanks Harry.
Cheers!
Reply | Email | Modify 
How to copy the Text from a TextBlock to another TextBlock? by Dim On January 11, 2011
Hi, first of all, I want to thank all of you for your information. Also, I want to ask you (if you know of course) how to copy (with C#) the Text from a TextBlock to another TextBlock? Each TextBlock is found in different .xaml files. Thanks in advance!
Reply | Email | Modify 
Discover the top 5 tips for understanding .NET Interop
 © 2012  contents copyright of their authors. Rest everything copyright Mindcracker. All rights reserved.