Created
May 21, 2015 00:00
-
-
Save RicardoACS/70bfe9117fdd0160450e to your computer and use it in GitHub Desktop.
Poligonos, Elipses y lineas
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Canvas> | |
<Rectangle Fill="Blue" Stroke="Black" Canvas.Left="40" | |
Canvas.Top="40" Height="40" Width="40"> | |
</Rectangle> | |
<Ellipse Fill="Green" Stroke="Blue" StrokeThickness="2" | |
Canvas.Left="60" Canvas.Top="120" Height="55" Width="55"> | |
</Ellipse> | |
<Path Stroke="DarkBlue" StrokeThickness="3"> | |
<Path.Data> | |
<LineGeometry StartPoint="96 96" EndPoint="192 192"/> | |
</Path.Data> | |
</Path> | |
</Canvas> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment