Элементы WPF не отображаются при применении группировки - PullRequest
3 голосов
/ 09 октября 2009

У меня странная проблема с моей группировкой ItemsControl. У меня есть следующие настройки:

<ItemsControl Margin="3" ItemsSource="{Binding Communications.View}" >
    <ItemsControl.GroupStyle>
        <GroupStyle>
            <GroupStyle.ContainerStyle>
                <Style TargetType="{x:Type GroupItem}">
                    <Setter Property="Template">
                        <Setter.Value>
                            <ControlTemplate TargetType="{x:Type GroupItem}">
                                <Expander>
                                    <Expander.Header>
                                        <Grid>
                                            <Grid.ColumnDefinitions >
                                                <ColumnDefinition Width="*" />
                                                <ColumnDefinition Width="Auto" />
                                            </Grid.ColumnDefinitions>
                                            <TextBlock Text="{Binding ItemCount, StringFormat='{}[{0}] '}" FontWeight="Bold" />
                                            <TextBlock Grid.Column="1" Text="{Binding Name, Converter={StaticResource GroupingFormatter}, StringFormat='{}Subject: {0}'}" FontWeight="Bold" />
                                        </Grid>
                                    </Expander.Header>
                                    <ItemsPresenter />
                                </Expander>
                            </ControlTemplate>
                        </Setter.Value>
                    </Setter>
                </Style>
            </GroupStyle.ContainerStyle>
        </GroupStyle>
    </ItemsControl.GroupStyle>
    <ItemsControl.ItemTemplate>
        <DataTemplate>
            <Grid>
                <Grid.ColumnDefinitions>
                    <ColumnDefinition Width="Auto" />
                    <ColumnDefinition Width="*" />
                    <ColumnDefinition Width="Auto" />
                </Grid.ColumnDefinitions>
                <Grid.RowDefinitions>
                    <RowDefinition />
                    <RowDefinition />
                </Grid.RowDefinitions>
                <TextBlock FontWeight="Bold" Text="{Binding Inspector, Converter={StaticResource NameFormatter}, StringFormat='{}From {0}:'}" Margin="3" />
                <TextBlock Text="{Binding SentDate, StringFormat='{}{0:dd/MM/yy}'}" Grid.Row="1" Margin="3"/>
                <TextBlock Text="{Binding Message }" Grid.Column="1" Grid.RowSpan="2" Margin="3"/>
                <Button Command="vm:CommunicationViewModel.DeleteMessageCommand" CommandParameter="{Binding}"  HorizontalAlignment="Right" Grid.Column="2">Delete</Button>
            </Grid>
        </DataTemplate>
    </ItemsControl.ItemTemplate>
</ItemsControl>

В моей ViewModel я предоставляю CollectionViewSource с именем 'Communications'. Я перехожу к добавлению шаблона группировки следующим образом:

Communications.GroupDescriptions.Add(new PropertyGroupDescription("Subject"));

Теперь проблема, с которой я сталкиваюсь, заключается в том, что группировка работает нормально, но я не вижу никаких элементов внутри групп. Что я делаю неправильно? Любые указатели будут высоко оценены.

Ответы [ 2 ]

1 голос
/ 09 октября 2009

Я не могу воспроизвести проблему - я полагаю, вы используете CollectionViewSource? Это может быть потому, что вы привязаны к свойству View напрямую.

Вот код C #, который я использовал:

public class Communication
{
    public string Subject { get; set; }
    public string Body { get; set; }
}

public partial class Window1 : Window
{
    public Window1()
    {
        InitializeComponent();

        var source = (CollectionViewSource)Resources["Communications"];
        source.Source = new List<Communication>()
        {
            new Communication { Subject = "WPF 4.0", Body = "I love what's happening with 4.0"},
            new Communication { Subject = "WPF 4.0", Body = "I hear the text rendering is the best feature"},
            new Communication { Subject = "Blend 3.0", Body = "Behaviors in Blend 3 change everything"}
        };

        source.GroupDescriptions.Add(new PropertyGroupDescription("Subject"));
    }
}

Вот XAML - он такой же, как у вас, но с парой удаленных вещей, поскольку у меня нет ваших конвертеров или команд:

<Window 
    x:Class="GroupStyleDemo.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Window1" Height="300" Width="300"
    >
    <Window.Resources>
        <CollectionViewSource x:Key="Communications" />
    </Window.Resources>
    <Grid>
        <ItemsControl Margin="3" ItemsSource="{Binding Source={StaticResource Communications}}" >
            <ItemsControl.GroupStyle>
                <GroupStyle>
                    <GroupStyle.ContainerStyle>
                        <Style TargetType="{x:Type GroupItem}">
                            <Setter Property="Template">
                                <Setter.Value>
                                    <ControlTemplate TargetType="{x:Type GroupItem}">
                                        <Expander>
                                            <Expander.Header>
                                                <Grid>
                                                    <Grid.ColumnDefinitions >
                                                        <ColumnDefinition Width="*" />
                                                        <ColumnDefinition Width="Auto" />
                                                    </Grid.ColumnDefinitions>
                                                    <TextBlock Text="{Binding ItemCount, StringFormat='{}[{0}] '}" FontWeight="Bold" />
                                                    <TextBlock Grid.Column="1" Text="{Binding Path=Name}" FontWeight="Bold" />
                                                </Grid>
                                            </Expander.Header>
                                            <ItemsPresenter />
                                        </Expander>
                                    </ControlTemplate>
                                </Setter.Value>
                            </Setter>
                        </Style>
                    </GroupStyle.ContainerStyle>
                </GroupStyle>
            </ItemsControl.GroupStyle>
            <ItemsControl.ItemTemplate>
                <DataTemplate>
                    <Grid>
                        <Grid.ColumnDefinitions>
                            <ColumnDefinition Width="Auto" />
                            <ColumnDefinition Width="*" />
                            <ColumnDefinition Width="Auto" />
                        </Grid.ColumnDefinitions>
                        <Grid.RowDefinitions>
                            <RowDefinition />
                            <RowDefinition />
                        </Grid.RowDefinitions>
                        <TextBlock Text="{Binding Body }" Grid.Column="1" Grid.RowSpan="2" Margin="3"/>
                    </Grid>
                </DataTemplate>
            </ItemsControl.ItemTemplate>
        </ItemsControl>

    </Grid>
</Window>
0 голосов
/ 26 июня 2019

После решения этой проблемы я сам обнаружил причину: шаблон для ItemsControl непосредственно включает панель с IsItemsHost="true".

Вы должны вставить ItemPresenter в шаблон и установить вместо него свойство ItemsControl.ItemsPanel.

...