Draws a circle with a blue interior : 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.Design Patterns
8.Development Class
9.Event
10.File Stream
11.Generics
12.GUI Windows Form
13.Language Basics
14.LINQ
15.Network
16.Office
17.Reflection
18.Regular Expressions
19.Security
20.Services Event
21.Thread
22.Web Services
23.Windows
24.Windows Presentation Foundation
25.XML
26.XML LINQ
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Windows Presentation Foundation » EllipseScreenshots 
Draws a circle with a blue interior
Draws a circle with a blue interior
     
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    x:Class="Microsoft.Samples.Graphics.RectangleExample"
    WindowTitle="Example">
  <Canvas>
    <Ellipse
      Width="50"
      Height="50"
      Fill="Blue"
      Canvas.Left="135"
      Canvas.Top="25"/>
  </Canvas>
</Page>

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