Creating a relatively simple data entry form, and just want to separate certain sections with a horizontal line (not unlike an HR tag in HTML) that stretches the full length of the form.
I have tried this:
<Line Stretch="Fill" Stroke="Black" X2="1"/>
Because the parent control is not a fixed width, this line causes the window to stretch to the full width of the screen.
Is there an easy way to do this without fixing the width of my parent control/window?
For anyone else struggling with this: "Qwertie's" comment above worked well for me.
This creates a vertical seperator whcih you can talior to suit your needs.
I had the same issue and eventually chose to use a Rectangle element:
<Rectangle HorizontalAlignment="Stretch" Fill="Blue" Height="4"/>
In my opinion it's somewhat easier to modify/shape than a separator. Of course the
Separator
is a very easy and neat solution for simple separations :)Use a Border of height 1 and don't set the Width (i.e. Width = Auto, HorizontalAlignment = Stretch, the default)
How about add this to your xaml: