3

我有一组 XAML 形式的触发器,在我的一生中,我无法弄清楚为什么一个集合有效,而另一个无效,尽管绑定到完全相同的变量。

首先,起作用的触发器:

<StackPanel Orientation="Vertical" Margin="25,0,0,0">
    <StackPanel.Style>
        <Style TargetType="{x:Type StackPanel}">
            <Setter Property="IsEnabled" Value="False" />
            <Style.Triggers>
                <DataTrigger Binding="{Binding GorOption.InternalName}" Value="Separator">
                    <Setter Property="IsEnabled" Value="True" />
                </DataTrigger>
            </Style.Triggers>
        </Style> 
    </StackPanel.Style>
</StackPanel>

<StackPanel Orientation="Vertical" Margin="25,0,0,0">
    <StackPanel.Style>
        <Style TargetType="{x:Type StackPanel}">
            <Setter Property="IsEnabled" Value="False" />
            <Style.Triggers>
                <DataTrigger Binding="{Binding GorOption.InternalName}" Value="BubblePoint">
                    <Setter Property="IsEnabled" Value="True" />
                </DataTrigger>
            </Style.Triggers>
        </Style>
    </StackPanel.Style>
</StackPanel>

这个触发器很好用。现在,我有一个 GroupBox 和一个 Label,它们的触发器非常相似,但根本不起作用。不起作用的触发器:

<GroupBox Header="Recombined Gas" Grid.Row="1" Grid.ColumnSpan="2">
    <GroupBox.Style>                
        <Style TargetType="{x:Type GroupBox}">
            <Setter Property="Header" Value="Recombined Gas" />
            <Style.Triggers>
                <DataTrigger Binding="{Binding GorOption.InternalName}" Value="Separator">
                    <Setter Property="Header" Value="Separator Gas" />
                </DataTrigger>
                <DataTrigger Binding="{Binding GorOption.InternalName}" Value="BubblePoint">
                    <Setter Property="Header" Value="Dissolved Gas" />
                </DataTrigger>
            </Style.Triggers>
        </Style>
    </GroupBox.Style>
</GroupBox>

并且标签触发器不起作用:

<Label Content="Reombined GOR" Width="90">
    <Label.Style>
        <Style TargetType="{x:Type Label}">
            <Setter Property="Content" Value="Recombined GOR" />
            <Style.Triggers>
                <DataTrigger Binding="{Binding GorOption.InternalName}" Value="Separator">
                    <Setter Property="Content" Value="Separator GOR" />
                </DataTrigger>
                <DataTrigger Binding="{Binding GorOption.InternalName}" Value="BubblePoint">
                    <Setter Property="Content" Value="Dissolved GOR" />
                </DataTrigger>
            </Style.Triggers>
        </Style>
    </Label.Style>
</Label>

我觉得我在这里遗漏了一些基本的东西,但现在它逃脱了我。如您所见,所有触发器都绑定到相同的值并触发相同的选项。是因为我有两个 DataTrigger 块试图绑定到单个 Triggers 块中的同一个变量吗?我无法想象这是一个问题,事实上,我确信我会在其他地方这样做。是不是我不知道的特定于 Label 和 GroupBox 的东西?

4

1 回答 1

4

没关系,发布后两分钟我自己回答了这个问题。我想这是“需要在不同的环境中看到它”的问题之一。我觉得我在自言自语……

无论如何,问题在于,当您在原始 XAML 标记中设置 Content 或 Header 之类的属性,然后尝试使用触发器更改该属性时,由于某种原因,触发器会被忽略。我假设这在我还没有看到的一些古老的 WPF 文档中得到了解释,但是在你弄清楚之前它会非常令人困惑。

于 2010-01-19T20:06:39.713 回答