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

我有全景控件的项目模板。 在那个模板中,我有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次执行的事件。

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

请告诉我,怎么做...


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

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

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

链接地址: http://www.djcxy.com/p/59895.html

上一篇: SelectionChanged Event for ListBox in panorama.ItemTemplate for Windows Phone?

下一篇: Change listbox template on lost focus event in WPF