I have included a Line control in a Silverlight application as followss.
<Canvas x:Name="Adorner">
<Border BorderBrush="Black" BorderThickness="2">
<StackPanel Orientation="Vertical">
<Line Stroke="Black" StrokeThickness="0" Height="80" HorizontalAlignment="Stretch">
</Line>
</StackPanel>
</Border>
</Canvas>
This line appears as expected, but does not allow me to resize it. Can anyone tell me how can enable resize property of the Line?
Thanks&Regards Padma