XAML Border

Here, we will see how to create a border around XAML elements.

The Border XAML element is used to add a border around another XAML element. For example, the Canvas control in WPF does not have a border property. To place a border around an element, WPF provides the Border element. Similar to other WPF elements, the Border has Width, Height, Background and HorizontalAlignment and VerticalAlignment properties.

Besides these common properties, Border has two properties that make Border a border. These two properties are BorderThickness and BorderBrush. The BorderBrush property represents the brush that is used to draw the border. The BorderThickness property represents the thickness of the border.

The CornerRadius property represents the degree to which the corners of a Border are rounded. The following code snippet creates a Border element and sets its properties.

  1. <Border  
  2.    BorderThickness="5"  
  3.    BorderBrush="Green"  
  4.    CornerRadius="10"  
  5.    Background="LightGray"  
  6.    HorizontalAlignment="Left"  
  7.    VerticalAlignment="Top"  
  8.    Width="270"  
  9.    Height="250" /> 

The code snippet in Listing 1 creates a Border around a Canvas element and sets its properties.

The output looks like in Figure 1 where all the child controls are wrapped horizontally.

  1. <Border  
  2.    BorderThickness="5"  
  3.    BorderBrush="Green"  
  4.    CornerRadius="10"  
  5.    Background="LightGray"  
  6.    HorizontalAlignment="Left"  
  7.    VerticalAlignment="Top"  
  8.    Width="270"  
  9.    Height="250">  
  10.   
  11.    <Canvas Background="LightCyan" >  
  12.       <Rectangle  
  13.          Canvas.Left="30" Canvas.Top="20"  
  14.          Height="200" Width="200"  
  15.          Stroke="Black" StrokeThickness="10" Fill="Red" />  
  16.    </Canvas>  
  17. </Border> 

Listing 1

The output looks like in Figure 1 where you can see the green border with rounded corners.


Figure 1

The Border class in WPF represents a Border element. The code snippet listed in Listing 2 creates a Border, sets its properties and places it around a Canvas element.

  1. private void CreateDynamicBorder()  
  2. {  
  3.    Border border = new Border();  
  4.    border.Background = new SolidColorBrush(Colors.LightGray);  
  5.    border.BorderThickness = new Thickness(5);  
  6.    border.BorderBrush = new SolidColorBrush(Colors.Green);  
  7.    border.CornerRadius = new CornerRadius(15);  
  8.    border.Width = 270;  
  9.    border.Height = 250;  
  10.   
  11.    Canvas cnvas = new Canvas();  
  12.    Rectangle rect = new Rectangle();  
  13.    rect.Width = 200;  
  14.    rect.Height = 200;  
  15.    rect.Fill = new SolidColorBrush(Colors.Black );  
  16.    rect.StrokeThickness = 10d;  
  17.    cnvas.Children.Add(rect);  
  18.    border.Child = cnvas;  
  19.    RootLayout.Content = border;  

Listing 2

Note. Border can have only one child element. If you need to place a border around multiple elements, you must place a border around each element.

Summary

In this article, we saw how to use the Border element to add borders to XAML elements.

Up Next
    Ebook Download
    View all
    Learn
    View all