How do I make the StackPanel have a Bottom Border and a thickness of 1?
I've tried it a few ways, one of them is below but nothing I've tried works (including some of the answers I found on SO):
<Border BorderBrush="#FF1986D1" BorderThickness="1" VerticalAlignment="Bottom">
<StackPanel Background="#FFC6E1EE" HorizontalAlignment="Stretch" VerticalAlignment="Top" Height="13">
</StackPanel>
</Border>