次のリストボックス コントロールをグリッド内に配置しましたが、リストボックスが水平方向に正しくスクロールしません。スクロールバーをドラッグすると問題なく動作しますが、矢印をクリックすると途中までしかスクロールしません。この動作を修正するにはどうすればよいですか?
<Page
x:Class="App5.MainPage"
IsTabStop="false"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:App5"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
<ListBox Height="400" Width="200"
ScrollViewer.HorizontalScrollBarVisibility="Auto"
ScrollViewer.HorizontalScrollMode="Auto">
<ListBoxItem Content="This is my horizontal test # 1" />
<ListBoxItem Content="This is my second horizontal test which spams across" />
</ListBox>
</Grid>
</Page>
ありがとう