Using XAML TextBox in WPF

The XAML TextBox element represents a text box. This article shows how to use a TextBox control in WPF.

Creating a TextBox

The TextBox element represents a WPF TextBox control in XAML.

  1. <TextBox/>  
The Width and Height attributes of the TextBox element represent the width and the height of a TextBox. The Text property of the TextBox element sets the content of a TextBox. The x:Name attribute represents the name of the control, that is a unique identifier of a control.

The code snippet in Listing 1 creates a TextBox control and sets the name, height, width and content of a TextBox control.
  1. <TextBox Name="TextBox1" Height="30" Width="200"   
  2.         Text="Hello! I am a TextBox.">              
  3. </TextBox>  
                                                                  Listing 1

The output looks as in Figure 1.

                                       text box
                                                                  Figure 1

As you can see from Figure 1, by default the TextBox is placed in the center of the page. We can place a TextBox 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 TextBox control in the left top corner of the page.
  1. <TextBox Name="TextBox1" Height="30" Width="200"   
  2.         Text="Hello! I am a TextBox."   
  3.         Margin="10,10,0,0" VerticalAlignment="Top"   
  4.         HorizontalAlignment="Left">              
  5. </TextBox>  
                                                                  Listing 2

Formatting a TextBox

The BorderBrush property of the TextBox sets a brush to draw the border of a TextBox. You may use any brush to fill the border. The code snippet in Listing 3 uses a linear gradient brush to draw the border with a combination of Red and Blue color.
  1. <TextBox.BorderBrush>  
  2.     <LinearGradientBrush StartPoint="0,0" EndPoint="1,1" >  
  3.         <GradientStop Color="Blue" Offset="0" />  
  4.         <GradientStop Color="Red" Offset="1.0" />  
  5.     </LinearGradientBrush>  
  6. </TextBox.BorderBrush>  
                                                                  Listing 3

The Background and Foreground properties of the TextBox set the background and foreground colors of a TextBox. You may use any brush to fill the border. The following code snippet uses linear gradient brushes to draw the background and foreground of a TextBox.
  1. <TextBox.Background>  
  2.     <LinearGradientBrush StartPoint="0,0" EndPoint="1,1" >  
  3.         <GradientStop Color="Blue" Offset="0.1" />  
  4.         <GradientStop Color="Orange" Offset="0.25" />                      
  5.         <GradientStop Color="Green" Offset="0.75" />  
  6.         <GradientStop Color="Red" Offset="1.0" />  
  7.     </LinearGradientBrush>  
  8. </TextBox.Background>  
  9. <TextBox.Foreground>  
  10.     <LinearGradientBrush StartPoint="0,0" EndPoint="1,1" >                      
  11.         <GradientStop Color="Orange" Offset="0.25" />  
  12.         <GradientStop Color="White" Offset="1.0" />                      
  13.     </LinearGradientBrush>  
  14. </TextBox.Foreground>  
The new TextBox looks as in Figure 2.

                                              color text box
                                                                  Figure 2

Setting Image as Background of a TextBox


To set an image as the background of a TextBox, we can set an image as the Background of the TextBox. The code snippet in Listing 4 sets the background of a TextBox to an image.
  1. <TextBox.Background>  
  2.     <ImageBrush ImageSource="dock.jpg" />  
  3. </TextBox.Background>  
                                                                  Listing 4

The new output looks as in Figure 3.

                                               new output
                                                                  Figure 3

Creating a TextBox Dynamically

The code listed in Listing 5 creates a TextBox control programmatically. First, it creates a TextBox object and sets its width, height, contents, background and foreground and later the TextBox is added to the LayoutRoot.
  1. private void CreateATextBox()  
  2. {  
  3.     TextBox txtb= new TextBox();  
  4.     txtb.Height = 50;  
  5.     txtb.Width = 200;  
  6.     txtb.Text = "Text Box content";  
  7.     txtb.Background = new SolidColorBrush(Colors.Orange);  
  8.     txtb.Foreground = new SolidColorBrush(Colors.Black);  
  9.     LayoutRoot.Children.Add(txtb);  
  10. }  
                                                                  Listing 5

Setting Fonts of TextBox 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 TextBox. The code snippet in Listing 6 sets the font properties of a TextBox.
  1. FontSize="14" FontFamily="Verdana" FontWeight="Bold"  
                                                                  Listing 6

The new output looks as in Figure 4.

                                              output looks
                                                                  Figure 4

The FontSource property allows loading custom fonts dynamically. The following code snippet sets the FontSource property.
  1. Uri fontUri = new Uri("SomeFont.ttf", UriKind.Relative);  
  2. StreamResourceInfo MySRI = Application.GetResourceStream(fontUri);  
  3. TextBox1.FontSource = new FontSource(MySRI.Stream);  
Non Editable TextBox

The IsReadOnly property of the TextBox sets the text box to read only. By default, it is false.
  1. IsReadOnly="True"   
Restricting Text Size of a TextBox

The MaxLength property of the TextBox sets the number of characters allowed to input in a text box.
  1. MaxLength="250"  
Scrolling, Alignment and Wrapping

The HorizontalScrollBarVisibility and VerticalScrollBarVisibility properties are used to set horizontal and vertical scroll bars of a TextBox, that is of type ScrollBarVisibility enumeration. The ScrollBarVisibility enumeration has the four values Disabled, Auto, Hidden and Visible. The following code snippet sets the horizontal and vertical scroll bars visible in a TextBox.
  1. HorizontalScrollBarVisibility="Visible"  
  2. VerticalScrollBarVisibility="Auto"  
The TextWrapping property sets the wrap of no warp text. The following code snippet sets the wrapping text option.
  1. TextWrapping="Wrap"  
The TextAlignment property sets the text alignment in a TextBox that is of type TextAlignment enumeration. A text can be aligned left, center, or right.
  1. TextWrapping="Wrap"  
The AcceptReturn property sets whether the return is accepted in a TextBox or not.
  1. AcceptsReturn="True"  
Listing 7 shows all these properties in a complete sample.
  1. <TextBox Name="TextBox2" Margin="10,10,50,0"   
  2.          Width="300" Height="150"  
  3.          HorizontalScrollBarVisibility="Visible"  
  4.          VerticalScrollBarVisibility="Visible"  
  5.          TextWrapping="Wrap"   
  6.          TextAlignment="Right"  
  7.          MaxLength="500"  
  8.          IsReadOnly="False"   
  9.          AcceptsReturn="True" >              
  10. </TextBox>  
                                                                  Listing 7

Selection in TextBox

The Select and SelectAll methods are used to select text in a TextBox. The Select method selects a text range in a TextBox and the SelectAll method selects all the text in a TextBox.

The SelectionBackground and SelectionForeground properties set the background and foreground colors of the selected text. The SelectedText property returns the selected text in a TextBox.

The code in Listing 8 sets the selected text background and foreground properties and in the button click event handler, returns the selected text of the TextBox.
  1. private void TextBox2Functionality()  
  2. {  
  3.     string textBoxData =  "Hey I am a text with scrolling and return functionality.";  
  4.     textBoxData += " You can select text it me and get the selected data. ";  
  5.     textBoxData += " How about setting background and foreground color of the selected text?. ";  
  6.     textBoxData += " Maximum lenght and a lot more to offer. ";  
  7.     textBoxData += " You can select text it me and get the selected data. ";  
  8.     textBoxData += " You can select text it me and get the selected data. ";  
  9.     textBoxData += " Also sets the selection background and foreground ";  
  10.     textBoxData += " Set font size and the font name. ";  
  11.     textBoxData += " You can select text it me and get the selected data. ";  
  12.     textBoxData += " Also sets the selection background and foreground ";  
  13.     textBoxData += " Set font size and the font name. ";  
  14.     textBoxData += " You can select text it me and get the selected data. ";  
  15.   
  16.     TextBox2.Text = textBoxData;  
  17.     TextBox2.FontFamily = new FontFamily("Georgia");  
  18.     TextBox2.FontSize = 12;  
  19.     TextBox2.SelectionBackground = new SolidColorBrush(Colors.Blue);  
  20.     TextBox2.SelectionForeground = new SolidColorBrush(Colors.White);  
  21.     TextBox2.SelectionStart = 100;  
  22.     TextBox2.SelectionLength = 200;  
  23. }  
  24. private void Button_Click(object sender, RoutedEventArgs e)  
  25. {  
  26.   MessageBox.Show(TextBox2.SelectedText);  
  27. }  
                                                                  Listing 8

The new output looks as in Figure 5.

                                       output looks like
                                                                  Figure 5

Summary

In this article, I discussed how to create and format a TextBox control in WPF and C#. Then we saw how to create a TextBox control dynamically. Then we saw how to set various properties of a TextBox such as making it non editable, restrict the size of text and set the foreground and background of the selected text.

Up Next
    Ebook Download
    View all
    Learn
    View all