Creates an ellipse shape using two ArcSegment objects : Ellipse « Windows Presentation Foundation « VB.Net






Creates an ellipse shape using two ArcSegment objects

Creates an ellipse shape using two ArcSegment objects
        
<Window x:Class="Main"
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  Title="Combined Geometry" Height="340" Width="300">
  <Border Margin="5" BorderBrush="Black" BorderThickness="1" HorizontalAlignment="Left">
    <Canvas Width="300" Height="340" Margin="5">
        <Path Stroke="Blue">
          <Path.Data>
            <PathGeometry>
              <PathFigure StartPoint="100,50">
                <ArcSegment Point="200,50" Size="50,30"
                  SweepDirection="Counterclockwise" />
              </PathFigure>
              <PathFigure StartPoint="100,50">
        
        
                <ArcSegment Point="200,50" Size="50,30"
                  SweepDirection="Clockwise" />
              </PathFigure>
            </PathGeometry>
          </Path.Data>
        </Path>
    </Canvas>
  </Border>
</Window>

   
    
    
    
    
    
    
    
  








Related examples in the same category

1.Stretch="Uniform"Stretch=
2.Stretch="UniformToFill"Stretch=
3.Start animation after clicking the EllipseStart animation after clicking the Ellipse
4.Set Stroke, StrokeThickness, Height and Width for EllipseSet Stroke, StrokeThickness, Height and Width for Ellipse
5.Ellipse with OuterGlowBitmapEffectEllipse with OuterGlowBitmapEffect
6.Fill Ellipse with custom ImageBrush - TileMode TileFill Ellipse with custom ImageBrush - TileMode Tile
7.Ellipse with BlurBitmapEffectEllipse with BlurBitmapEffect
8.EllipseGeometry and GeometryDrawingEllipseGeometry and GeometryDrawing
9.Ellipse GeometryEllipse Geometry
10.Draws several Ellipse elements within a CanvasDraws several Ellipse elements within a Canvas
11.Ellipse Shape and StrokeEllipse Shape and Stroke
12.Ellipse with DropShadowBitmapEffectEllipse with DropShadowBitmapEffect
13.Using Image as Ellipse fillUsing Image as Ellipse fill
14.Draws an oval with a light green interior and a red outlineDraws an oval with a light green interior and a red outline
15.Sets the shape's Fill property with an ImageBrush. The resulting ellipse's interior is painted with an imageSets the shape's Fill property with an ImageBrush. The resulting ellipse's interior is painted with an image
16.Use Ellipse event delegateUse Ellipse event delegate
17.Use Ellipse.AddHandler to add handler to Ellipse objectsUse Ellipse.AddHandler to add handler to Ellipse objects
18.Ellipse ShapeEllipse Shape
19.Ellipse depends on Canvas layout and positionEllipse depends on Canvas layout and position
20.An animated Ellipse traces the outline of rendered text by using the path geometry of the text.An animated Ellipse traces the outline of rendered text by using the path geometry of the text.
21.Ellipse Mouse Down eventEllipse Mouse Down event
22.Capture Mouse EllipseCapture Mouse Ellipse
23.Ellipse MouseMove eventEllipse MouseMove event
24.Ellipse Mouse up eventEllipse Mouse up event