0

我有一个绑定到适当 ViewModel 的用户控件。我在这个绑定到 ViewModel.Graph 属性的控件上有一个 GraphLayout (使用Graph# ):

<graph:ProductGraphLayout Graph="{Binding Path=Graph}" />

许多包含 ProductVertex 的 VertexControl 被放置在这个布局上。内容由 DataTemplate 表示,并使用 Style 应用主题:

<DataTemplate x:Key="VertexTemplate" DataType="{x:Type graph:ProductVertex}">
    <TextBlock Text="{Binding Path=ID, Mode=OneWay}" />
</DataTemplate>
<Style TargetType="{x:Type graphsharp:VertexControl}">
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="{x:Type graphsharp:VertexControl}">
                <Border>
                    <Border.Style>
                        <Style TargetType="{x:Type Border}">
                            <Setter Property="BorderBrush" Value="#6695C4" />
                            <Setter Property="BorderThickness" Value="2" />
                        </Style>
                    </Border.Style>
                    <ContentPresenter Content="{TemplateBinding Vertex}" ContentTemplate="{StaticResource VertexTemplate}" />
                </Border>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>

如何根据 ProductVertex 属性更改容器 (VertexControl) 的样式,比如 IsCurrent?

4

2 回答 2

1

据我了解的数据结构,您可以使用ProductVertex带有ControlTemplate. VertexControl您现在可以例如使用ValueConverter来根据顶点对象更改边框的颜色。

<ControlTemplate TargetType="{x:Type graphsharp:VertexControl}">
    <Border>
        <Border.Style>
            <Style TargetType="{x:Type Border}">
                <Setter Property="BorderBrush" Value="{TemplateBinding Vertex.IsCurrent, Converter={StaticResource YourBoolToColorConverter}" />
                <Setter Property="BorderThickness" Value="2" />
            </Style>
        </Border.Style>
        <ContentPresenter Content="{TemplateBinding Vertex}" ContentTemplate="{StaticResource VertexTemplate}" />
    </Border>
</ControlTemplate>
于 2012-06-20T06:37:18.023 回答
1

似乎我已经自己管理了如何实现这一目标:

<DataTemplate x:Key="VertexTemplate" DataType="{x:Type graph:ProductSubstitutionVertex}">
    <TextBlock Text="{Binding Path=ID, Mode=OneWay}">
        <TextBlock.Style>
            <Style TargetType="TextBlock">
                <Style.Triggers>
                    <DataTrigger Binding="{Binding IsCurrent}" Value="true">
                        <Setter Property="Background" Value="#EDF2F6" />
                    </DataTrigger>
                </Style.Triggers>
            </Style>
        </TextBlock.Style>
    </TextBlock>
</DataTemplate>
于 2012-06-20T06:46:45.237 回答