The resulting ellipse's outline is painted with an image : Ellipse « Windows Presentation Foundation « C# / C Sharp






The resulting ellipse's outline is painted with an image

The resulting ellipse's outline 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="6" Grid.Column="0" Height="150" Width="150" StrokeThickness="20"
     HorizontalAlignment="Left">
      <Ellipse.Stroke>
        <ImageBrush ImageSource="c:\image.jpg" Viewport="-10,-10,160,160" ViewportUnits="Absolute" />
      </Ellipse.Stroke>
    </Ellipse>

  </Grid>
</Page>

   
    
    
    
    
    
  








Related examples in the same category

1.Ellipse Fill with DrawingBrushEllipse Fill with DrawingBrush
2.Rectangle and EllipseRectangle and Ellipse
3.Ellipse With Styled LinesEllipse With Styled Lines
4.Draws an oval with a blue interiorDraws an oval with a blue interior
5.Draws an oval with a blue interior and a black outlineDraws an oval with a blue interior and a black outline
6.Draws a circle with a blue interiorDraws a circle with a blue interior
7.Draws a circle with a blue interior and a black outlineDraws a circle with a blue interior and a black outline
8.An ellipse with a radial fillAn ellipse with a radial fill
9.An ellipse that has been scaled by 20%An ellipse that has been scaled by 20%
10.Fill an Ellipse with Cyan and Draw the border with Black colorFill an Ellipse with Cyan and Draw the border with Black color
11.Ellipse Mouse Down eventEllipse Mouse Down event
12.Ellipse MouseMove eventEllipse MouseMove event
13.Ellipse Mouse up eventEllipse Mouse up event