我在网格中有动态数量的元素,并使用模板进行可视化:
<UserControl x:Class="MUSTANG.GUI.TableModule.Controls.ColumnAxis"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d" >
<UserControl.Resources>
<Style TargetType="ListViewItem">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="ListViewItem">
<!-- Here will be the layout of the elements from the ListView -->
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style TargetType="ListView">
<Style.Triggers>
<DataTrigger Binding="{Binding Path=TreeItemChildren.Count}" Value="0">
<Setter Property="Visibility" Value="Collapsed"/>
</DataTrigger>
</Style.Triggers>
</Style>
</UserControl.Resources>
<ListView ItemsSource="{Binding Path=RootItem.TreeItemChildren}" Padding="{Binding Path=RootItem.PaddingFixWindows6}">
<ListView.ItemsPanel>
<ItemsPanelTemplate>
<!-- Somewhere here should be a GridSplitter -->
<StackPanel Orientation="Horizontal" HorizontalAlignment="Stretch">
</StackPanel>
</ItemsPanelTemplate>
</ListView.ItemsPanel>
</ListView>
</UserControl>
现在我想为ListView中的每个项目使用GridSplitter。我试过的任何东西都不起作用,因为ItemsPanelTemplate只需要一个VisualTree(所以我不能把一个Gridsplitter放在StackPanel下面。)
是否有可能以另一种方式做到这一点?也许来自代码隐藏文件?我需要解决主要问题,即我有一些动态数量的元素,我想在它们之间使用某种分割器。
背景信息:由于递归调用,我必须使用模板。在原始代码中,第一个网格是另一个ListView。