摘要

我有一个DropDownButton,其中包含特定国家/地区的所有联赛。因此,本质上,用户从Nation中选择ComboBox,并且所选LeaguesNation将添加到DropDownButton内。到这里为止没有问题。

我需要做的是:在Leagues中为DropDownButton组织Nation。因此,想象在DropDownButton中我有这个组织:

Italy
     Item1
     Item2
     Item3
England
     Item1
     Item2
Spain
     Item1
     Item2
... etc ...


物品种类

您如何查看该项目是按国家/地区组织的。在解释为实现此结果所做的工作之前,我必须说我正在使用CheckedListItem类,该类本质上是将CheckBox绑定到DropDownButton项的类。此类非常简单:

public class CheckedListItem<T> : INotifyPropertyChanged
{
    public event PropertyChangedEventHandler PropertyChanged;

    private bool isChecked;
    private T item;

    public CheckedListItem() { }

    public CheckedListItem(T item, bool isChecked = false)
    {
        this.item = item;
        this.isChecked = isChecked;
    }

    public T Item
    {
        get { return item; }
        set
        {
            item = value;
            PropertyChanged?.Invoke(this, new PropertyChangedEventArgs("Item"));
        }
    }

    public bool IsChecked
    {
        get { return isChecked; }
        set
        {
            isChecked = value;
            PropertyChanged?.Invoke(this, new PropertyChangedEventArgs("IsChecked"));
        }
    }
}


本质上使Item<T>和if被选中。为了使它在XAML中起作用,我在Window.Resources中编写了以下代码:

<DataTemplate x:Key="NormalItemTemplate">
    <CheckBox IsChecked="{Binding IsChecked}" Content="{Binding Item.Name}"
              x:Name="Leagues" Checked="Leagues_Checked" Unchecked="Leagues_Unchecked" />
</DataTemplate>

<DataTemplate x:Key="SelectionBoxTemplate" >
    <TextBlock Text="{DynamicResource displayedNation}"/>
</DataTemplate>

<DataTemplate x:Key="CombinedTemplate">
    <ContentPresenter x:Name="Presenter" Content="{Binding}" ContentTemplate="{StaticResource NormalItemTemplate}" />
    <DataTemplate.Triggers>
        <DataTrigger Binding="{Binding RelativeSource={RelativeSource FindAncestor, Controls:DropDownButton, 1}}"
                     Value="{x:Null}">
            <Setter TargetName="Presenter" Property="ContentTemplate"
                    Value="{StaticResource SelectionBoxTemplate}" />
        </DataTrigger>
    </DataTemplate.Triggers>
</DataTemplate>

<!--This is for the group item !-->

<Style TargetType="{x:Type GroupItem}" x:Key="containerStyle">
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="{x:Type GroupItem}">
                <!--Here, we tell that each group of item will be placed under Expander control,
                    and this expander control will by default will have style we defined in above code.-->
                <Expander IsExpanded="False" x:Name="ComboExpander" Header="{TemplateBinding Content}"
                          HeaderTemplate="{TemplateBinding ContentTemplate}">
                    <ItemsPresenter />
                </Expander>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>


说明问题

现在,为了实现DropDownButton中的分组,我首先在CollectionViewSource中创建了一个Window.Resource,如下所示:

<CollectionViewSource Source="{Binding Leagues}" x:Key="GroupedData">
    <CollectionViewSource.GroupDescriptions>
        <PropertyGroupDescription PropertyName="Item.Country" />
    </CollectionViewSource.GroupDescriptions>
</CollectionViewSource>

<DataTemplate x:Key="GroupHeader">
    <TextBlock Text="{Binding Name}" Margin="10,0,0,0" Foreground="#989791"/>
</DataTemplate>


DropDownButton中,我设置了以下结构:

<Controls:DropDownButton Content="Leagues" x:Name="LeagueMenu"
                          ItemsSource="{Binding Source={StaticResource GroupedData}}"
                          ItemTemplate="{StaticResource CombinedTemplate}" >
    <Controls:DropDownButton.GroupStyle>
        <GroupStyle ContainerStyle="{StaticResource containerStyle}"
                    HeaderTemplate="{StaticResource GroupHeader}">
        </GroupStyle>
    </Controls:DropDownButton.GroupStyle>
</Controls:DropDownButton>


(请注意,我正在使用MahApp)

因此,从本质上讲,我为CheckedListItem添加了一个模板,并且为ItemSource GroupedData添加了一个模板,您可以从上面的代码中看到如何绑定ObservableCollectionLeagues

资料填充

当选择Nation时,将为Leagues添加可供选择的Nations使用的DropDownButton列表,用于实现此目的的代码:

private ObservableCollection<CheckedListItem<League>> _leagues = new ObservableCollection<CheckedListItem<League>>();
public ObservableCollection<CheckedListItem<League>> Leagues
{
    get
    {
        return _leagues;
    }
    set
    {
        _leagues = value;
        OnPropertyChanged();
    }
}


用于添加所选LeagueNation的方法是这样的:

public void GetLeagues(string link, string nation)
{
    Task.Run(() =>
    {
        var leagues = //get some collection

        foreach (var league in leagues)
        {
            var championship = new CheckedListItem<League>();
            championship.Item = new League { Name = league.Name, Link = league.Link, Country = nation };
            _leagues.Add(championship);
        }
    });
}


本质上,我创建了CheckedListItemLeague作为模型包含此属性:

public class League
{
    public string Name { get; set; }
    public string Link { get; set; }
    public string Country { get; set; }
}


应该出现的结果是这样的:

c# - 无法在DropDownButton中组织数据-LMLPHP

采取from this tutorial

但是我得到了以下结果:

c# - 无法在DropDownButton中组织数据-LMLPHP

如您所见,我没有带有Nation名称的标题分组。我也没有在XAML或代码中出现任何错误,所以我不知道为什么标题不出现。

我知道问题可能会有些复杂,所以对于任何问题或更多细节,请问我,我将尽力回答。

演示解决方案:

https://mega.nz/#!g4YlTL4A!G4WXy1t64Q4yImYNvzgwGbieX1mhKnXO2OiuAO3FDg0

最佳答案

我没有尝试让第三方控件起作用,而是更改了起作用的ComboBox来满足您的需求:

c# - 无法在DropDownButton中组织数据-LMLPHP

MainWindow.xaml

<Controls:MetroWindow x:Class="WpfApplication1.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:Controls="http://metro.mahapps.com/winfx/xaml/controls"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:WpfApplication1"
        mc:Ignorable="d"
        Title="MainWindow" Height="700" Width="525">
    <Window.Resources>
        <ResourceDictionary>

            <CollectionViewSource Source="{Binding Leagues}" x:Key="GroupedData">
                <CollectionViewSource.GroupDescriptions>
                    <PropertyGroupDescription PropertyName="Item.Country" />
                </CollectionViewSource.GroupDescriptions>
            </CollectionViewSource>

            <DataTemplate x:Key="GroupHeader">
                <TextBlock Text="{Binding Name}" Margin="10,0,0,0" Foreground="#989791"/>
            </DataTemplate>

            <Style TargetType="{x:Type GroupItem}" x:Key="containerStyle">
                <Setter Property="Template">
                    <Setter.Value>
                        <ControlTemplate TargetType="{x:Type GroupItem}">
                            <Expander   IsExpanded="False" x:Name="ComboExpander" Header="{TemplateBinding Content}"
                                        HeaderTemplate="{StaticResource GroupHeader}">
                                <ItemsPresenter />
                            </Expander>
                        </ControlTemplate>
                    </Setter.Value>
                </Setter>
            </Style>

            <DataTemplate x:Key="NormalItemTemplate">
                <CheckBox IsChecked="{Binding IsChecked}" Content="{Binding Item.Name}" x:Name="Leagues" />
            </DataTemplate>
            <DataTemplate x:Key="HeaderTemplate">
                <TextBlock Text="Campionati"/>
            </DataTemplate>
            <DataTemplate x:Key="CombinedTemplate">
                <ContentPresenter x:Name="Presenter"
                   Content="{Binding}"
                   ContentTemplate="{StaticResource NormalItemTemplate}" />
                <DataTemplate.Triggers>
                    <DataTrigger
                        Binding="{Binding RelativeSource={RelativeSource FindAncestor, ComboBoxItem, 1}}"
                        Value="{x:Null}">
                        <Setter TargetName="Presenter" Property="ContentTemplate"
                            Value="{StaticResource HeaderTemplate}" />
                    </DataTrigger>
                </DataTemplate.Triggers>
            </DataTemplate>
        </ResourceDictionary>

    </Window.Resources>
    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition/>
            <RowDefinition/>
            <RowDefinition/>
            <RowDefinition/>
        </Grid.RowDefinitions>
        <ComboBox x:Name="LeagueMenuComboBox"
                  ItemsSource="{Binding Source={StaticResource GroupedData}}"
                  ItemTemplate="{StaticResource CombinedTemplate}"
                  HorizontalContentAlignment="Center">
            <ComboBox.GroupStyle>
                <GroupStyle ContainerStyle="{StaticResource containerStyle}"
                            HeaderTemplate="{StaticResource GroupHeader}">
                </GroupStyle>
            </ComboBox.GroupStyle>
        </ComboBox>
    </Grid>
</Controls:MetroWindow>

关于c# - 无法在DropDownButton中组织数据,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39953216/

10-12 02:55