私のツリービューには、ItemsSource を提供する 2 つの異なるクラスがあります。
public class TreeViewModel : ViewModelBase
{
public ObservableCollection<NodeViewModel> Items { get; set; }
}
public class NodeViewModel : ViewModelBase
{
public string Id { get; set; }
public string Name { get; set; }
public ObservableCollection<NodeViewModel> Children { get; set; }
}
ここで、TreeView に TreeViewModel の項目を表示し、NodeViewModel によって提供される階層データを表示するようにします。
ここに私のXAMLがあります
<Window x:Class="TreeViewMasterDetails.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:TreeViewMasterDetails"
Title="MainWindow" Height="350" Width="525">
<Grid>
<TreeView Height="Auto"
HorizontalAlignment="Stretch"
Margin="10"
VerticalAlignment="Stretch"
Width="Auto">
<TreeView.Resources>
<HierarchicalDataTemplate DataType="x:Type local:TreeViewModel" ItemsSource="{Binding Items}">
<TextBlock Text="{Binding Path=Name}"></TextBlock>
</HierarchicalDataTemplate>
<HierarchicalDataTemplate DataType="x:Type local:NodeViewModel" ItemsSource="{Binding Children}">
<TextBlock Text="{Binding Name}"></TextBlock>
</HierarchicalDataTemplate>
</TreeView.Resources>
</TreeView>
</Grid>
</Window>
Items
の として提供しようとしましItemsSource
たTreeView
。何かを表示する場合、データを階層的に表示しません。
ItemTemplate
また、 の代わりに を使ってみTreeView.Resources
ました。
それについて何が間違っていますか?
おそらく問題は最初TextBlock Text Binding
ですか?Name
そこにのプロパティNodeViewModel
を表示したいItems
。