将弹出窗口PlacementTarget绑定到listbox SelectedItem

时间:2015-08-29 13:06:36

标签: c# wpf listbox popup

我有以下XAML(简化):

<Grid>
        <Popup Name="Popup" DataContext="{Binding ElementName=GameWheel, Path=SelectedItem}" PlacementTarget="{Binding SelectedItem}" Placement="Center" IsOpen="True">
            <Image Source="{Binding ImagePath}" Width="100" />
        </Popup>

        <DockPanel Margin="40,0">
            <ListBox x:Name="GameWheel"  ...>
                <ListBox.ItemsPanel>
                    <ItemsPanelTemplate>
                        <c:VirtualizingWrapPanel IsItemsHost="True" />
                    </ItemsPanelTemplate>
                </ListBox.ItemsPanel>
                <ListBox.ItemTemplate>
                    <DataTemplate>
                        <Image x:Name="GamesWheelImage" ... />
                    </DataTemplate>
                </ListBox.ItemTemplate>
            </ListBox>
        </DockPanel>
    </Grid>

虽然DataContext是正确的,并且它在弹出窗口中显示了正确的图像,但放置完全错误。我的目的是让弹出窗口覆盖列表框中SelectedItem的中心,但由于某种原因,它总是位于窗口的中心。

有关如何在列表框中获取selectedItem的展示位置的任何想法,以便弹出窗口始终涵盖所选项目的中心?我最接近它将图像放在列表框的中心,但我无法让它只覆盖所选项目。

1 个答案:

答案 0 :(得分:0)

在我看来,你应该为ListBoxItems创建一个特定的模板,该模板属于列表框,名为 GameWheel 。 为了给你一个样本,我创建了一个简单的ListBox版本:

<Window x:Class="WpfApplication1.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:sys="clr-namespace:System;assembly=mscorlib"
        Title="MainWindow" Height="300" Width="400">

    <Window.Resources>
        <ControlTemplate x:Key="ListBoxItemWithPopup" TargetType="{x:Type ListBoxItem}">
            <Border Name="border" Padding="2">
                <Grid>
                    <Popup Name="popup" PlacementTarget="{Binding RelativeSource={RelativeSource TemplatedParent}}" 
                           Placement="Center" >
                        <TextBlock Margin="1" Background="White" Foreground="Black" Text="{TemplateBinding Content}" />
                    </Popup>
                    <ContentPresenter />
                </Grid>
            </Border>
            <ControlTemplate.Triggers>
                <Trigger Property="IsSelected" Value="true">
                    <Setter TargetName="popup" Property="IsOpen" Value="True"/>
                    <Setter TargetName="border" Property="Background" Value="Azure" />
                </Trigger>
            </ControlTemplate.Triggers>
        </ControlTemplate>
    </Window.Resources>

    <Grid>

        <DockPanel Margin="40,0">
            <ListBox x:Name="GameWheel">
                <ListBox.ItemContainerStyle>
                    <Style TargetType="{x:Type ListBoxItem}">
                        <Setter Property="Template" Value="{StaticResource ListBoxItemWithPopup}" />
                    </Style>
                </ListBox.ItemContainerStyle>
                <ListBox.Items>
                    <sys:String>One</sys:String>
                    <sys:String>Two</sys:String>
                    <sys:String>Three</sys:String>
                    <sys:String>Four</sys:String>
                </ListBox.Items>
            </ListBox>
        </DockPanel>
    </Grid>

</Window>

正如您所看到的,Popup直接包含在ListBoxItem模板中,并使用触发器显示。 我希望我的样本可以帮助你。