Sets the shape's Fill property with an ImageBrush. The resulting ellipse's interior is painted with an image
<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"> <Ellipse Grid.Row="3" Grid.Column="0" Height="150" Width="150" HorizontalAlignment="Left"> <Ellipse.Fill> <ImageBrush ImageSource="c:\image.jpg" /> </Ellipse.Fill> </Ellipse> </Grid> </Page>