Skip to content

Instantly share code, notes, and snippets.

@RicardoACS
Created May 21, 2015 00:00
Show Gist options
  • Save RicardoACS/70bfe9117fdd0160450e to your computer and use it in GitHub Desktop.
Save RicardoACS/70bfe9117fdd0160450e to your computer and use it in GitHub Desktop.
Poligonos, Elipses y lineas
<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