8

我需要根据控件上的依赖属性设置列表框的 ItemsPanelTemplate 属性。如何使用 DataTemplateSelector 来做到这一点?

我有类似的东西:

<ListBox.ItemsPanel>
    <ItemsPanelTemplate>
        <!-- Here I need to replace with either a StackPanel or a wrap panel-->
    </ItemsPanelTemplate>
</ListBox.ItemsPanel>

谢谢

4

2 回答 2

19

没有ItemsPanelSelector(可能是因为它不是DataTemplate),但您可以绑定它或使用Trigger

Binding例子

<ListBox ItemsPanel="{Binding RelativeSource={RelativeSource Self},
                              Path=Background,
                              Converter={StaticResource MyItemsPanelConverter}}">

TriggerStyle例如_

<ListBox ItemsSource="{Binding Source={x:Static Fonts.SystemFontFamilies}}">
    <ListBox.Style>
        <Style TargetType="ListBox">
            <Setter Property="ItemsPanel">
                <Setter.Value>
                    <ItemsPanelTemplate>
                        <StackPanel/>
                    </ItemsPanelTemplate>
                </Setter.Value>
            </Setter>
            <Style.Triggers>
                <!-- Your Trigger.. -->
                <Trigger Property="Background" Value="Green">
                    <Setter Property="ItemsPanel">
                        <Setter.Value>
                            <ItemsPanelTemplate>
                                <WrapPanel/>
                            </ItemsPanelTemplate>
                        </Setter.Value>
                    </Setter>
                </Trigger>
            </Style.Triggers>
        </Style>
    </ListBox.Style>
</ListBox>
于 2012-05-18T13:28:36.917 回答
0

我认为这里最好的方法是为您的 ListBox 使用 Style 并设置触发器,根据您引用的 DependencyProperty 更改 ItemsPanel。

于 2012-05-18T13:28:04.727 回答