Ellipse Shape and Stroke : Ellipse « Windows Presentation Foundation « VB.Net






Ellipse Shape and Stroke

Ellipse Shape and Stroke
       

<Window x:Class="EllipseShape"
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Ellipses"
  Height="280" Width="200">
  <Grid>
    <StackPanel>
      <TextBlock Text="Ellipse:" Margin="10 10 10 5" />
      <Ellipse Width="150" Height="70" Fill="LightGray"
        Stroke="Black" />
      <TextBlock Text="Circle:" Margin="10 10 10 5" />
      <Ellipse Width="100" Height="100" Fill="LightGray"
        Stroke="Black" />
    </StackPanel>
  </Grid>
</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 with DropShadowBitmapEffectEllipse with DropShadowBitmapEffect
12.Using Image as Ellipse fillUsing Image as Ellipse fill
13.Draws an oval with a light green interior and a red outlineDraws an oval with a light green interior and a red outline
14.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
15.Creates an ellipse shape using two ArcSegment objectsCreates an ellipse shape using two ArcSegment objects
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