在WPF中使用扩展器创建全部展开和折叠所有按钮

时间:2017-06-30 18:52:35

标签: c# wpf xaml visual-studio-2013 expander

我在WPF(C#)的Visual Studio 2013中工作,我有以下代码从我的xml创建一个扩展器。它目前正在完美地工作,但我希望包括一个展开全部并折叠所有按钮。我看了一遍,似乎无法找到解决方案。

这是创建扩展器的位置。我知道我只需要遍历项目列表并将Property =“IsExpanded”更改为Value =“True”以创建全部展开。

       <DataTemplate x:Key="dtListTemplate" >
            <StackPanel>
                <Expander LostFocus="CollapseExpander" ExpandDirection="Down" Width="Auto">
                    <Expander.Style>
                        <Style TargetType="Expander">
                            <Setter Property="IsExpanded" Value="False" />
                            <Setter Property="Header" Value="{Binding XPath=@Name}" />
                            <Setter Property="FontWeight" Value="Bold"/>

                            <Style.Triggers>
                                <DataTrigger Binding="{Binding IsExpanded,RelativeSource={RelativeSource Self}}" Value="True">
                                </DataTrigger>
                            </Style.Triggers>
                        </Style>
                    </Expander.Style>
                    <ListBox Name="itemsList"
                        ItemsSource="{Binding XPath=UpgradeAction}"
                        ItemTemplate="{StaticResource dtListItemTemplate}"
                        SelectionChanged="listItems_SelectionChanged"
                        Style="{StaticResource styleListBoxUpgradeAction}"
                        ItemContainerStyle="{StaticResource styleListBoxItemUpgradeAction}">
                    </ListBox>
                </Expander>
            </StackPanel>
        </DataTemplate>

这是调用DataTemplate的代码,它包含来自Xml的信息。

<StackPanel>
        <StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
            <Border Grid.Column="0" Grid.Row="0" Width="790" Height="40" Padding="5" Background="#4E87D4">
                <Label VerticalAlignment="Center" FontSize="16" FontWeight="Bold" Foreground="White">Test</Label>
            </Border>
            <Button Name="ExpandBttn" Width="100" Height="40" FontSize="16" FontWeight="Bold" Content="Expand All" DataContext="{Binding}" Click="Expand_Button_Click"/>
            <Button Name="ColapseBttn" Width="100" Height="40" FontSize="16" FontWeight="Bold" Content="Colapse All" DataContext="{Binding}" Click="Collapse_Button_Click"/>
        </StackPanel>
        <ListView Name="listItems" Grid.Column="0" Grid.Row="1" Background="Wheat"
             ItemsSource="{Binding Source={StaticResource xmldpUpgradeActions}, XPath=ActionGroup}"
             ItemTemplate="{StaticResource dtListTemplateRichards}"
             SelectionChanged="listItems_SelectionChanged">
        </ListView>
    </StackPanel>

这是我在.cs文件中尝试展开的所有部分。

  private void Expand_Button_Click(object sender, RoutedEventArgs e)
  {
      foreach(var item in listItems.Items)
      {
          var listBoxItem = listItems.ItemContainerGenerator.ContainerFromItem(item) as ListBoxItem;
          var itemExpander = (Expander)GetExpander(listBoxItem);
          if (itemExpander != null)
              itemExpander.IsExpanded = true;
      }
  }

  private static DependencyObject GetExpander(DependencyObject container)
  {
      if (container is Expander) return container;

      for (var i = 0; i < VisualTreeHelper.GetChildrenCount(container); i++)
      {
          var child = VisualTreeHelper.GetChild(container, i);

          var result = GetExpander(child);
          if (result != null)
          {
              return result;
          }
      }

      return null;
  }

非常感谢任何帮助!

1 个答案:

答案 0 :(得分:2)

xmldpUpgradeActions是CollectionViewSource吗?

无论集合中是什么类,它都应该实现INotifyPropertyChanged

为其提供IsExpanded属性,在其值更改时在其setter中引发PropertyChanged,并将其绑定到模板中的Expander.IsExpanded

<Expander 
    IsExpanded="{Binding IsExpanded}"
    LostFocus="CollapseExpander" 
    ExpandDirection="Down" 
    Width="Auto">

编写一个循环遍历集合中所有项目的命令,并在每个项目上设置item.IsExpanded = false;