我的WPF项目中有一些简单的层次结构。
我有基类,它调用Product。然后我从这个基类继承了两个类。然后我从他们两个继承了更多的类。
所以我有Product类,然后是Book和Disk类,它继承自Product类,而RecipeBook类,ProgramingBook类和AdventureBook类,继承自Book类。
然后我创建了集合并在那里添加了一些书籍,如collection.Add(new RecipeBook(){bla bla bla});
最后我收集了不同的课程。
所以我需要的是通过WPF TreeView显示所有这些东西。
这样会像那样:
Product
Book
RecipeBook
Book#1
Book#2
ProgramingBook
Book#1
....
Disk
Disk#1
Disk#2
.....
那我怎么能这样做呢?
<TreeView x:Name="treeView" Height="224" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top" Width="337" >
<TreeViewItem Header="Products" >
<TreeViewItem Header="Books">
<TreeViewItem Header="Recipe"></TreeViewItem>
<TreeViewItem Header="Programing"></TreeViewItem>
<TreeViewItem Header="Adventure"></TreeViewItem>
</TreeViewItem>
<TreeViewItem Header="CDs">
</TreeViewItem>
</TreeViewItem>
</TreeView>
答案 0 :(得分:2)
我大部分时间都有这种方式(即分组工作但所有组必须具有相同级别。)
Product
Book
RecipeBook
Book#1
Book#2
ProgramingBook
Book#1
....
Disk
Disk
Disk#1
Disk#2
.....
我正在使用您的示例数据作为我的输入,因此我的类结构如下:
class Product
{
public string Name { get; set; }
}
class Book : Product
{
public string BookName { get; set; }
}
class RecipeBook : Book
{
public int NumRecipes { get; set; }
}
class ProgrammingBook : Book
{
public string LanguageCovered { get; set; }
}
class Disk : Product
{
public int Size { get; set; }
}
填充如下:
ObservableCollection<Product> products = new ObservableCollection<Product>();
products.Add(new ProgrammingBook() { BookName = "P1", LanguageCovered = "C#" });
products.Add(new ProgrammingBook() { BookName = "P2", LanguageCovered = "F#" });
products.Add(new RecipeBook() { BookName = "P3", NumRecipes = 4 });
products.Add(new RecipeBook() { BookName = "P4", NumRecipes = 6 });
products.Add(new Disk() { Size = 512 });
products.Add(new Disk() { Size = 1024 });
this.DataContext = products;
我们需要按类型分组,以便我们可以在CollectionViewSource PropertyGroupDescription上使用转换器。
这是我的转换器(我为类型的层次结构的不同级别传递不同的值:
public class GroupByType : IValueConverter
{
public string type { get; set; }
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
if (type == "root")
{
if (value is Product)
{
return "Product";
}
return null;
}
if (type == "subs")
{
if (value is Book)
{
return "Book";
}
if (value is Disk)
{
return "Disk";
}
}
if (type == "main")
{
if (value is ProgrammingBook)
{
return "PBook";
}
if (value is RecipeBook)
{
return "RBook";
}
if (value is Disk)
{
return "Disk";
}
}
return null;
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}
一旦我们获得了数据,我们需要适当的模板(我的很简单并在最后的xaml中显示)但我们需要一些选择它们的方法,所以我使用以下模板选择器:
public class Selector : DataTemplateSelector
{
public override DataTemplate SelectTemplate(object item, DependencyObject container)
{
string templateKey;
if (item is CollectionViewGroup)
{
if ((item as CollectionViewGroup).Name == null)
{
return null;
}
templateKey = "GroupTemplate";
}
else if (item is ProgrammingBook)
{
templateKey = "pTemplate";
}
else if (item is RecipeBook)
{
templateKey = "rTemplate";
}
else if (item is Disk)
{
templateKey = "dTemplate";
}
else
{
return null;
}
return (DataTemplate)((FrameworkElement)container).FindResource(templateKey);
}
}
我的XAML看起来像这样:
<Window.Resources>
<HierarchicalDataTemplate x:Key="GroupTemplate" ItemsSource="{Binding Path=Items}">
<TextBlock Text="{Binding Path=Name}" FontWeight="Bold"/>
</HierarchicalDataTemplate>
<DataTemplate x:Key="pTemplate">
<TextBlock Text="{Binding Path=LanguageCovered }"/>
</DataTemplate>
<DataTemplate x:Key="rTemplate">
<TextBlock Text="{Binding Path=NumRecipes}"/>
</DataTemplate>
<DataTemplate x:Key="dTemplate">
<TextBlock Text="{Binding Path=Size}"/>
</DataTemplate>
<c:GroupByType x:Key="gt" />
<c:Selector x:Key="s"/>
<CollectionViewSource Source="{Binding}" x:Key="cvs">
<CollectionViewSource.GroupDescriptions>
<PropertyGroupDescription>
<PropertyGroupDescription.Converter>
<c:GroupByType type="root"/>
</PropertyGroupDescription.Converter>
</PropertyGroupDescription>
<PropertyGroupDescription>
<PropertyGroupDescription.Converter>
<c:GroupByType type="subs"/>
</PropertyGroupDescription.Converter>
</PropertyGroupDescription>
<PropertyGroupDescription>
<PropertyGroupDescription.Converter>
<c:GroupByType type="main"/>
</PropertyGroupDescription.Converter>
</PropertyGroupDescription>
</CollectionViewSource.GroupDescriptions>
</CollectionViewSource>
</Window.Resources>
<Grid>
<TreeView ItemsSource="{Binding Source={StaticResource cvs}, Path=Groups}" ItemTemplateSelector="{StaticResource s}"/>
</Grid>
这里的想法是,对于层次结构中的每个类型,我们创建一个新组,其实际对象是树的叶节点。您可以通过向转换器添加新节来根据需要向分组添加任意数量的级别。您还可以通过更改转换器的返回值来重命名组。
如果您有任何疑问,请询问,因为这是一个很长的答案:)。
答案 1 :(得分:1)
检查:HierarchicalDataTemplate,您可以找到一个完整的示例:Displaying Hierarchical Data Sample
答案 2 :(得分:0)
您还应该在使用带有MVVM的TreeView
时查看Josh Smith's article