I have a scrollviewer which isn't stretching to fit its content up until maxwidth. Currently, it sets the width to the MinWidth value... and that's about it.
This is the code I'm using, I've tried both with and without HorizontalAlignment="Stretch".
<Border BorderBrush="#5D5D5D" BorderThickness="5" Padding="0" Height="75" Background="White">
<ScrollViewer HorizontalScrollBarVisibility="Hidden" VerticalScrollBarVisibility="Disabled" MaxWidth="800" MinWidth="200" HorizontalAlignment="Stretch">
<ItemsControl ItemsSource="{Binding People}" >
</ItemsControl>
</ScrollViewer>
</Border>

HorizontalContentAlignmentto Stretch - Chris W.