用于Windows Phone的panorama.ItemTemplate中ListBox的SelectionChanged事件?

时间:2012-02-29 14:31:30

标签: c# wpf windows-phone-7 listbox panorama-control

我有全景控件的项目模板。在该模板中,我有listbox with listItem模板。我在列表框中选择更改事件时遇到问题。

<phone:PhoneApplicationPage.Resources>
    <CollectionViewSource x:Key="SlideItemList" Filter="collectionView_Filter"/>
</phone:PhoneApplicationPage.Resources>

<!--LayoutRoot is the root grid where all page content is placed-->
<Grid x:Name="LayoutRoot" Background="Transparent">

    <!--Panorama control-->
    <controls:Panorama x:Name="AppPano" ItemsSource="{Binding SlidesCollections}" SelectionChanged="AppPano_SelectionChanged" >
        <controls:Panorama.Background>
            <ImageBrush ImageSource="PanoramaBackground.png"/>
        </controls:Panorama.Background>

        <controls:Panorama.ItemTemplate>
            <DataTemplate>
                <Grid VerticalAlignment="Top" HorizontalAlignment="Left" Margin="0,-100,0,0">
                    <StackPanel HorizontalAlignment="Center" Height="250" Width="200" VerticalAlignment="Top">
                        <TextBlock Text="{Binding Title}" HorizontalAlignment="Center" FontSize="200" Width="Auto"/>
                    </StackPanel>
                    <ListBox x:Name="ItemsList" ItemsSource="{Binding Source={StaticResource SlideItemList}}" Margin="0,250,0,0" VerticalAlignment="Top" SelectionChanged="ItemsList_SelectionChanged" Height="430">
                        <ListBox.ItemTemplate>
                            <DataTemplate>
                                <StackPanel x:Name="ImgStack" HorizontalAlignment="Left" Height="430" VerticalAlignment="Top" Width="370" Margin="50,0,0,0">
                                    <Image Height="350" Width="360" Source="{Binding Image}"/>
                                    </StackPanel>
                            </DataTemplate>
                        </ListBox.ItemTemplate>
                    </ListBox>
                </Grid>
            </DataTemplate>
        </controls:Panorama.ItemTemplate>
    </controls:Panorama>
</Grid>

Xaml.cs

  private void keyItemsList_SelectionChanged(object sender, SelectionChangedEventArgs e)
    {
        var listbox = (ListBox)sender;
        var conGen = listbox.ItemContainerGenerator;
        var item = (UIElement)conGen.ContainerFromIndex(listbox.SelectedIndex);

        if (item != null)
        {
            int selectedItemList = listbox.SelectedIndex;
            if (sLasListItem != selectedItemList)
            {
                 // navigate to another page
                 sLasListItem = selectedItemList;
            }
        }
    }

绑定UI元素非常有效。

问题: 1.当我从一个全景项目页面的列表中选择新项目时,它将触发,所有全景项目的相同选择更改事件。

例: 让我们考虑一下,我有4个全景项目。我从第一个全景项目列表框中选择了第二个项目。此选择更改了4次执行的事件。

我的期望是,当我从列表中选择新项目时,此事件应仅针对相应的全景项目触发一次。

请建议我,怎么做......

1 个答案:

答案 0 :(得分:1)

这是因为你绑定了相同的列表4次。 (假设SlidesCollections包含4个项目。)

因为每个列表都是相同的数据,所以当您在该数据的一个视图中更改所选项时,它实际上会在基础(尽管已过滤)列表中更改。

您应该在视图模型中创建单独的列表。