Ellipse Fill with DrawingBrush : Ellipse « Windows Presentation Foundation « C# / C Sharp






Ellipse Fill with DrawingBrush

Ellipse Fill with DrawingBrush
     
<Window x:Class="Workspace.DockExample"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Workspace" Width="640" Height="480">
    
        <Ellipse Margin="15,0,0,0" Width="200" Height="200" Stroke="Red" StrokeThickness="1">
          <Ellipse.Fill>
            <DrawingBrush Viewport="0,0,150,50" ViewportUnits="Absolute" TileMode="Tile">
              <DrawingBrush.Drawing>
                <DrawingGroup>
                  <DrawingGroup.Children>                
                    <ImageDrawing ImageSource="c:\image.JPG" Rect="0,0,100,50" />
                    <ImageDrawing ImageSource="c:\image.JPG" Rect="100,0,50,50" />
                  </DrawingGroup.Children>
                </DrawingGroup>                
              </DrawingBrush.Drawing>
            </DrawingBrush>
          </Ellipse.Fill>
        </Ellipse>
</Window>

   
    
    
    
    
  








Related examples in the same category

1.Rectangle and EllipseRectangle and Ellipse
2.Ellipse With Styled LinesEllipse With Styled Lines
3.Draws an oval with a blue interiorDraws an oval with a blue interior
4.Draws an oval with a blue interior and a black outlineDraws an oval with a blue interior and a black outline
5.Draws a circle with a blue interiorDraws a circle with a blue interior
6.Draws a circle with a blue interior and a black outlineDraws a circle with a blue interior and a black outline
7.An ellipse with a radial fillAn ellipse with a radial fill
8.An ellipse that has been scaled by 20%An ellipse that has been scaled by 20%
9.The resulting ellipse's outline is painted with an imageThe resulting ellipse's outline is painted with an image
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