我正在尝试将列表水平滚动,因此我按照this,但是然后调试给我这个错误
这是我的代码:
<phone:PhoneApplicationPage.Resources>
<ItemsPanelTemplate x:Key="ItemsPanelTemplate1">
<StackPanel Orientation="Horizontal"/>
</ItemsPanelTemplate>
</phone:PhoneApplicationPage.Resources>
.................
<ListBox ItemsSource="{Binding HomeAlbumList}"
ItemTemplate="{StaticResource HorizontalListTemplate}"
SelectionChanged="SSC_ChangeAlbum"
ScrollViewer.HorizontalScrollBarVisibility="Auto"
ScrollViewer.VerticalScrollBarVisibility="Disabled"
ItemsPanel="{StaticResource ItemsPanelTemplate1}"
/>
我正在开发Visual Studio 2013更新4。
感谢您的帮助:)。