LongListSelector JumpListStyle后台绑定不起作用

时间:2014-07-15 09:42:42

标签: xaml windows-phone-8 longlistselector

我在win phone 8应用程序中使用longlistselector。我使用过ItemTemplate,GroupHeaderTemplate和JumpListStyle。对于GroupHeaderTemplate,我使用的是xaml

  <DataTemplate>
        <Grid Margin="0 0 0 10">
              <Grid.Background>
                      <SolidColorBrush Color="{Binding DataContext.ForegroundColor, ElementName=LayoutRoot}"/>
              </Grid.Background>                                
         </Grid>
   </DataTemplate>

这很好用。但是,如果我对JumpListStyle的ItemTemplate应用相同而不是什么。唯一的区别是在这种情况下模板定义了内部样式。

  <phone:LongListSelector.JumpListStyle>                        
         <Style TargetType="phone:LongListSelector">
              <Setter Property="ItemTemplate" Value="{StaticResource JumpListDataTemplate}"/>                              
          </Style>
  </phone:LongListSelector.JumpListStyle>

有任何建议,上面的代码有什么问题?

0 个答案:

没有答案