Mega Code Archive

 
Categories / VB.Net Tutorial / WPF
 

Sets the shapes Fill property with an ImageBrush The resulting ellipses 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>