An ellipse that has been scaled by 20% : Ellipse « Windows Presentation Foundation « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Date Time
8.Design Patterns
9.Development Class
10.Event
11.File Stream
12.Generics
13.GUI Windows Form
14.Internationalization I18N
15.Language Basics
16.LINQ
17.Network
18.Office
19.Reflection
20.Regular Expressions
21.Security
22.Services Event
23.Thread
24.Web Services
25.Windows
26.Windows Presentation Foundation
27.XML
28.XML LINQ
C# / C Sharp » Windows Presentation Foundation » EllipseScreenshots 
An ellipse that has been scaled by 20%
An ellipse that has been scaled by 20%
     
<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>

   
    
    
    
    
  
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.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
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.