我有一个应用程序,它读取数据库表并将其放入树视图中。树视图的当前ItemTemplate如下所示:
<TreeView.ItemTemplate>
<HierarchicalDataTemplate ItemsSource="{Binding SubOrganLocations}">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="35" />
<ColumnDefinition Width="35" />
<ColumnDefinition Width="35" />
</Grid.ColumnDefinitions>
<TextBlock Grid.Column="0" Text="{Binding OrganDisplayName}" />
<TextBox Grid.Column="1" IsEnabled="True" />
<TextBox Grid.Column="2" IsEnabled="True" />
<TextBox Grid.Column="3" IsEnabled="True" />
</Grid>
</HierarchicalDataTemplate>
</TreeView.ItemTemplate>
但是,将来可能会有更多列需要添加(由表中不同值的数量决定),所以我试图动态创建它。我该怎么做呢?
答案 0 :(得分:2)
这样的事情可能是可能的:
<TreeView.ItemTemplate>
<HierarchicalDataTemplate ItemsSource="{Binding SubOrganLocations}">
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding OrganDisplayName}" />
<!-- If the fields to bind to can be exposed via a collection:
<ItemsControl ItemsSource="{Binding Fields}"> -->
<ItemsControl ItemsSource="{Binding, Converter={StaticResource SomeCleverConverter}}">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal" />
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplate>
<DataTemplate>
<TextBox Text="{Binding Value}" Width="35" />
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</StackPanel>
</HierarchicalDataTemplate>
</TreeView.ItemTemplate>
这取决于TreeViewItem的DataContext(SubOrganLocation)是否可以公开字段集合,或者至少用于通过转换器派生它们。最简单也可能最简单的方法是公开一组字段,这样你就可以{Binding Fields}
。
答案 1 :(得分:0)
正如FlyingStreudel所说,在这种情况下使用自定义控件是一种很好的方法。 XAML看起来像:
<!-- entity 1 -->
<HierarchicalDataTemplate DataType="{x:Type local:Entity1}" ItemsSource="{Binding Items, Mode=OneWay}">
<Grid>
<local:Entity1Control/>
</Grid>
</HierarchicalDataTemplate>
<!-- entity 2 (leaf) -->
<DataTemplate DataType="{x:Type local:Entity2}">
<Grid>
<local:Entity2Control />
</Grid>
</DataTemplate>
您不必使用自定义控件,您可以将特定列放在每个模板中。