3

ウィンドウの DataContext で表されるビュー モデルがあります。

public class SchoolViewModel:ViewModelBase
{
      public ObservableCollection<SchoolClassGroup> ClassesCollection { get; set; }
            ....             
} 


public class SchooleClassGroup:ViewModelBase
{
     public string ClassName {get;set;}
     public string TeacherName {get;set;}
     public ObservableCollection<Students> StudentCollection{ get; set; }

}

public class Student
{
     public string Name {get;set;}
     public int Age {get;set;}
     public DateTime BirthDate {get;set;}
     ...
} 

学校、クラス、生徒を表示する TreeView を表現したいと考えています。

どうすればいいですか?

ありがとう!

4

1 に答える 1

4

親子関係を持つオブジェクト ツリーのレベルごとに HeirarchicalDataTemplates を作成し、リーフ ノード用の単純な DataTemplate を作成する必要があります。

オブジェクト ツリーは School -> Class -> Student である必要があります

クラス 学校には

List<Class>

クラス クラスには

List<Student>

それなら簡単です

<Window.Resources>

        <HierarchicalDataTemplate ItemsSource="{Binding Classes}" DataType="{x:Type School}">
            <TextBlock Text="{Binding Name}" />
        </HierarchicalDataTemplate>

        <HierarchicalDataTemplate ItemsSource="{Binding Students}" DataType="{x:Type Class}">
            <TextBlock Text="{Binding Name}" />
        </HierarchicalDataTemplate>

        <DataTemplate DataType="{x:Type Student}">
            <TextBlock Text="{Binding Name}" />
        </DataTemplate >

    </Window.Resources>

    <Grid>
        <TreeView ItemsSource="{Binding Schools}" >
    </Grid>
于 2013-07-18T14:47:44.757 に答える