2

我想要类似于 这里所要求的东西- 但是,我需要模板依赖于属性的值,这是一个枚举。

该类看起来与此类似:

class ResultBlock
{
    public string Name { get; set; }
    public BlockType Type { get; set; }
    public IList<ResultBlock> ChildBlocks { get; private set; }
}

WhereBlockType有三个不同的值,BLOCK, FILE, FOLDER- 现在,我想创建一个数据模板以不同的方式呈现,具体取决于ResultBlock.Type当前对象中的值。

我试过用 做这个DataType=,但显然没有用。我确信只有在 XAML 中才能很容易地做到这一点。

<TreeView.Resources>
    <HierarchicalDataTemplate DataType="{x:Type docom:ResultBlock}" ItemsSource="{Binding ChildBlocks}">
        <StackPanel Orientation="Horizontal">
            <StackPanel.Resources>
                <DataTemplate DataType="{x:Type docom:BlockType.BLOCK}">
                    <TextBlock Text="BLOCK:{Binding Name}" />
                </DataTemplate>
            </StackPanel.Resources>
        </StackPanel>
    </HierarchicalDataTemplate>
</TreeView.Resources>
4

3 回答 3

8

您可以在属性上触发,例如:

<HierarchicalDataTemplate DataType="{x:Type docom:ResultBlock}"
                          ItemsSource="{Binding ChildBlocks}">
    <ContentControl Content="{Binding}">
        <ContentControl.Style>
            <Style TargetType="ContentControl">
                <Style.Triggers>
                    <DataTrigger Binding="{Binding BlockType}" Value="BLOCK"> 
                        <Setter Property="ContentTemplate">
                            <Setter.Value>
                                <DataTemplate>
                                     <!-- Data template for BLOCK blocks -->
                                </DataTemplate>
                            </Setter.Value>
                        </Setter>
                    </DataTrigger>
                    <!-- More triggers -->
                </Style.Triggers>
            </Style>
        </ContentControl.Style>
    </ContentControl>
</HierarchicalDataTemplate>

是的,它很冗长。(您可以将不同类型的模板定义为键控资源,然后在其中引用它们Setters

于 2012-07-24T14:16:14.590 回答
6
<Window.Resources>
    <local:TaskListDataTemplateSelector x:Key="myDataTemplateSelector"/>
</Window.Resources>
<Grid>
    <ListBox Width="400" Margin="10"
     ItemsSource="{Binding Source={StaticResource myTodoList}}"
     ItemTemplateSelector="{StaticResource myDataTemplateSelector}"
     HorizontalContentAlignment="Stretch"/>
</Grid>
public class TaskListDataTemplateSelector : DataTemplateSelector
{
    public override DataTemplate
        SelectTemplate(object item, DependencyObject container)
    {
        FrameworkElement element = container as FrameworkElement;

        if (element != null && item != null && item is Task)
        {
            Task taskitem = item as Task;

            if (taskitem.Priority == 1)
                return
                    element.FindResource("importantTaskTemplate") as DataTemplate;
            else
                return
                    element.FindResource("myTaskTemplate") as DataTemplate;
        }

        return null;
    }
}

这是为 ListBox 实现的,但对于 DataGrid/TreeView 的想法可以相同。我希望这会有所帮助。

于 2012-07-13T07:34:05.537 回答
1

一种方法是使用 TemplateSelector 并在选择器中根据您的 BlockType 执行您想要的操作。

或者您创建 wrapperviewmodels,例如:

 public class ResultBlockBlock{}
 public class ResultBlockFile{}
 public class ResultBlockFolder{}

那么您可以采用 DataTemplate DataType 方式

于 2012-07-13T07:22:03.750 回答