Mega Code Archive

 
Categories / VB.Net / WPF
 

The ImageBrushs content is flipped horizontally and vertically as it is tiled

<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">     <Rectangle Name="flipXYTileRectangle" Grid.Row="6" Grid.Column="2" Width="150" Height="150" Stroke="LimeGreen" StrokeThickness="1" HorizontalAlignment="Left">       <Rectangle.Fill>         <ImageBrush Viewport="0,0,50,50" ViewportUnits="Absolute" TileMode="FlipXY" AlignmentX="Left" AlignmentY="Top" ImageSource="c:\image.jpg"  />       </Rectangle.Fill>     </Rectangle>   </Grid> </Page>