Ellipse With Styled Lines

image_pdfimage_print


   
     
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
      WindowTitle="Ellipse with Styled Lines">
    <Ellipse Margin="0.5in"
             Fill="Blue"
             Stroke="Red"
             StrokeDashArray="{Binding Source={x:Static DashStyles.Dot}, 
                                       Path=Dashes,
                                       Mode=OneTime}"
             StrokeThickness="36pt"
             StrokeDashCap="Round">
    </Ellipse>
</Page>

   
    
    
    
    
     


An ellipse with a radial fill

image_pdfimage_print


   
     

<Window 
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  Title="SolidColorBrush Animation Example"
  Background="White">
  
  <StackPanel>
    <Ellipse  Height ="75" Width ="75">
      <Ellipse.Fill>
        <RadialGradientBrush GradientOrigin="0.5,0.5"
          Center="0.5,0.5" RadiusX="0.5" RadiusY="0.5">
          <GradientStop Color="Yellow" Offset="0" />
          <GradientStop Color="Red" Offset="0.25" />
          <GradientStop Color="Blue" Offset="0.75" />
          <GradientStop Color="LimeGreen" Offset="1" />
        </RadialGradientBrush>
      </Ellipse.Fill>
    </Ellipse>

  </StackPanel>

</Window>

   
    
    
    
    
     


An ellipse that has been scaled by 20%

image_pdfimage_print


   
     
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
        xmlns:sys="clr-namespace:System;assembly=mscorlib" 
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" >
  <Grid>

    <Ellipse Fill ="Blue" Grid.Row="0" Grid.Column="2" Width="5" Height="5">
      <Ellipse.RenderTransform>
        <ScaleTransform ScaleX ="20" ScaleY ="20"/>
      </Ellipse.RenderTransform>
    </Ellipse>

  </Grid>

</Window>