#534 – Drawing Shapes with the Shape Tools in Blend
April 11, 2012 Leave a comment
There are three shape tools in the Tools Panel in Blend that will let you draw shapes on your user interface. They share an icon on the Tools Panel, so you can see them all by clicking and holding the left button down.
These tools allow you to draw the following elements:
- System.Windows.Shapes.Rectangle
- System.Windows.Shapes.Ellipse
- System.Windows.Shapes.Path (a path with a single line segment)
With a shape tool enabled, you can draw directly on the artboard with your mouse.
<Canvas> <Ellipse Fill="#FFF4F4F5" Height="63" Canvas.Left="84" Stroke="Black" Canvas.Top="119" Width="133"/> </Canvas>