how to add a border around canvas wp7

970 views Asked by At

How to add border around canvas element? Border should be same size as canvas.

I am using below code for this, but couldn't able to achieve the result.

 <Canvas Background="Transparent" Margin="69,-30,56,315" x:Name="LetterCanvas" >
 <Border x:Name="CanvasBorder" BorderThickness="5" Height="271" Width="325">
 </Border></Canvas>
1

There are 1 answers

2
ColinE On

You need to place the Border outside of the Canvas:

<Border>
  <Canvas>
  </Canvas>
</Border>