私はデザイン時の XAML データを数週間使用してきましたが、リソースとして宣言されたコレクション ビューに基づいてリスト ボックスに項目を表示する現在のケースなどを除いて、正常に動作しているようです。
基本的には「モノ」をカテゴリ別にまとめた一覧を表示したい。
public class Thing
{
public string Category { get; set; }
public string Name { get; set; }
}
そして、ダミークラス ListOfThings を介してこれを公開します
public class ListOfThings
{
public string ListName { get; set; }
public ObservableCollection<Thing> Things { get; set; }
}
次のようなデータ用のダミー XAML ファイルがあります (XMLFile1.xaml)。
<local:ListOfThings xmlns:local="clr-namespace:ListBoxGroupExample"
ListName="TheListOfThings">
<local:ListOfThings.Things>
<local:Thing Name="Item1" Category="Catagory1" />
<local:Thing Name="Item2" Category="Catagory1" />
<local:Thing Name="Item3" Category="Catagory2" />
</local:ListOfThings.Things>
ウィンドウには、各グループのエキスパンダーのグループ スタイルを含むリスト ボックスがあります。
<Window x:Class="ListBoxGroupExample.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:local="clr-namespace:ListBoxGroupExample"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Title="MainWindow"
Width="525"
Height="350"
d:DataContext="{d:DesignData Source=/DesignData/XMLFile1.xaml}"
mc:Ignorable="d">
<Window.Resources>
<CollectionViewSource x:Key="GroupedData" Source="{Binding Path=Things}">
<CollectionViewSource.GroupDescriptions>
<PropertyGroupDescription PropertyName="Category" />
</CollectionViewSource.GroupDescriptions>
</CollectionViewSource>
</Window.Resources>
<Grid>
<StackPanel>
<ListBox ItemsSource="{Binding Source={StaticResource GroupedData}}">
<ListBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding Path=Name}" />
</DataTemplate>
</ListBox.ItemTemplate>
<ListBox.GroupStyle>
<GroupStyle>
<GroupStyle.ContainerStyle>
<Style TargetType="{x:Type GroupItem}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type GroupItem}">
<Expander IsExpanded="True">
<Expander.Header>
<TextBlock FontWeight="Bold" Text="{Binding Path=Name}" />
</Expander.Header>
<ItemsPresenter Margin="5,0,0,0" />
</Expander>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</GroupStyle.ContainerStyle>
</GroupStyle>
</ListBox.GroupStyle>
</ListBox>
</StackPanel>
</Grid>
これは実行時に機能します (ListOfThings のインスタンスを作成し、XAML 設計データと同じ構造を持つように Observable コレクションを設定します) が、設計時には何も得られません。
コレクションビューではなく、物事の ObservableCollection に直接バインドするように ItemSource を変更すると、機能しますが、もちろんグループ化されません。
ItemsSource="{Binding Path=Things}"
静的リソースは設計時に使用できないという点で誤解されていますか? したがって、コレクションビューへのバインディングがレンダリングされないのはなぜですか?
または、Source へのバインド構文が正しくありませんか?