为ListBox定义ItemsPanelTemplate时出现“无效的XA​​ML”

时间:2015-07-17 13:37:37

标签: c# xaml windows-phone-8 listbox

我正在尝试将列表水平滚动,因此我按照this,但是然后调试给我这个错误

enter image description here

这是我的代码:

<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。

感谢您的帮助:)。

0 个答案:

没有答案