Set Border's BorderBrush to ImageBrush : Border « Windows Presentation Foundation « C# / C Sharp






Set Border's BorderBrush to ImageBrush

Set Border's BorderBrush to ImageBrush
     
<Page  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
   xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
   x:Class="Microsoft.Samples.Graphics.UsingImageBrush.TilingExample" >

  <Grid Margin="20">
    <Border Grid.Row="6" Grid.Column="4" BorderThickness="20" Width="200"
     HorizontalAlignment="Left">
      <Border.BorderBrush>
        <ImageBrush ImageSource="c:\image.jpg" Viewport="-0.1,-0.1,1.5,1.5" />
      </Border.BorderBrush>
      <DockPanel>
        <TextBlock DockPanel.Dock="Top" TextWrapping="Wrap" Margin="10">This DockPanel has a border painted with an ImageBrush.</TextBlock>
      </DockPanel>
    </Border>

  </Grid>
</Page>

   
    
    
    
    
  








Related examples in the same category

1.Simple BorderSimple Border
2.Set Border Margin, BorderThickness, BorderBrush, Width and HeightSet Border Margin, BorderThickness, BorderBrush, Width and Height
3.Adding border to TextBlock with BorderAdding border to TextBlock with Border
4.Border with LinearGradientBrushBorder with LinearGradientBrush
5.Set border thicknessSet border thickness
6.Set border marginSet border margin
7.Set border corner radiusSet border corner radius
8.Display a BorderDisplay a Border
9.A custom pen to draw the bordersA custom pen to draw the borders
10.Change borderChange border