9

我正在开发的应用程序有一种由扩展器组成的手风琴,但每个扩展器独立运行,而不是一次只允许一个打开的项目。每个扩展器都与视图模型中集合中的一个项目相关。

我目前的解决方案是使用列表框,然后将列表 itemsource 绑定到集合,并让项目模板呈现扩展器和 exapnders 内容。

问题是列表框将每个扩展器视为一个项目(显然)并允许选择和突出显示。突出显示有点难看,可能会被禁用,但是选择会给我带来一些问题,因为它会导致列表滚动以尽可能多地显示展开的扩展器。

是否有一个有点像堆栈面板(也许)的 WPF 控件,它允许我使用项目模板绑定包含的控件,但没有选择和突出显示?

在此处输入图像描述

            <ListBox Grid.Row="0" Grid.Column="0" Width="Auto" SelectionMode="Single" ItemsSource="{Binding Path=MeasurementSources}">
            <ListBox.ItemTemplate>
                <DataTemplate>
                    <Expander  Header="{Binding Name}" IsEnabled="{Binding Available}">
                        <ListBox Width="Auto" SelectionMode="Single"
                                ItemsSource="{Binding Path=Measurements}"
                                SelectedItem="{Binding Path=SelectedMeasurement}">
                            <ListBox.ItemTemplate>
                                <DataTemplate>
                                    <WrapPanel>
                                        <TextBlock Text="{Binding Name}" FontWeight="Bold" />
                                        <TextBlock Text=" "/>
                                        <TextBlock Text="{Binding Created}"/>
                                    </WrapPanel>
                                </DataTemplate>
                            </ListBox.ItemTemplate>
                        </ListBox>
                    </Expander>
                </DataTemplate>
            </ListBox.ItemTemplate>
        </ListBox>
4

3 回答 3

26

如果您想要没有选择功能的类似列表的功能,您应该使用ItemsControl- 顺便说一下,Selector它的基类又是ListBox

整个事情就变成了

<ItemsControl Width="Auto" ItemsSource="{Binding Measurements}"
  <ItemsControl.ItemTemplate>
    <DataTemplate>
      <WrapPanel>
        <TextBlock Text="{Binding Name}" FontWeight="Bold" />
        <TextBlock Text=" "/>
        <TextBlock Text="{Binding Created}"/>
      </WrapPanel>
    </DataTemplate>
 </ItemsControl.ItemTemplate>
</ItemsControl>

显然,在这种情况下,您无法绑定所选项目。

于 2013-07-25T09:02:45.190 回答
1

这是我没有意识到的有用信息。

http://msdn.microsoft.com/library/windows/apps/hh780657.aspx

注意 ItemsControl 是几个常见集合控件的基类,包括 ListView、GridView、FlipView、ListBox 和 ComboBox 控件。这些示例使用 ListView 和 GridView 控件,但信息通常适用于 ItemsControls。

换句话说,使用 ItemsControl 确实是解决我的问题的方法,因为使用 ListBox 然后尝试禁用突出显示和选择功能确实将其转换回它自己的基类。

于 2013-07-25T19:10:29.707 回答
0

对我来说最好的解决方案是:

 <Style TargetType="{x:Type ListBoxItem}">
      <Style.Resources>
          <!-- With focus -->
          <SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}"
                                 Color="Transparent" />
          <!-- Without focus -->
          <SolidColorBrush x:Key="{x:Static SystemColors.ControlBrushKey}"
                                 Color="Transparent" />
          <!-- Text foreground -->
          <SolidColorBrush x:Key="{x:Static SystemColors.HighlightTextBrushKey}"
                                 Color="Black" />
      </Style.Resources>
      <Setter Property="FocusVisualStyle" Value="{x:Null}"></Setter>
</Style>

几个月前我在某处找到了它stackoverflow:)

于 2013-07-25T08:30:48.737 回答