0

我在 windows phone 8 中有点新,并且迷失在这个 {Binding} 东西中。我想知道这个按钮如何绑定命令参数?这个命令参数绑定到什么?

   <data:MoviesByCategory x:Key="movies"/>
    <data:MoreCommand x:Key="moreCommand" />
 <phone:LongListSelector x:Name="codeMovies" IsGroupingEnabled="true"
                                      ItemsSource="{StaticResource movies}"
                                      ListHeaderTemplate="{StaticResource movieListHeader}"
                                      GroupHeaderTemplate="{StaticResource movieGroupHeader}"
                                      ItemTemplate="{StaticResource movieItemTemplate}"
                                      JumpListStyle="{StaticResource MoviesJumpListStyle}"
                                      toolkit:TiltEffect.IsTiltEnabled="True">

                <!-- The group footer template, for groups in the main list -->
                <phone:LongListSelector.GroupFooterTemplate>
                    <DataTemplate>
                        <Button DataContext="{Binding}" Content="{Binding GetMore}"
                                Command="{StaticResource moreCommand}" CommandParameter="{Binding}"/>
                    </DataTemplate>
                </phone:LongListSelector.GroupFooterTemplate>
4

1 回答 1

1

Using{Binding}将绑定到当前的 DataContext ,因此DataContext="{Binding}"可以删除设置,因为它什么都不做。
由于CommandParameter="{Binding}"在 GroupFooterTemplate 内,dataContext 将是您的电影组,因此它将是 CommandParameter 绑定到的内容。

于 2013-10-02T12:30:25.757 回答