2

次の例の「THIS LINE ####」行を見てください。

<ListBox Grid.Row="0" x:Name="listBoxServers">
<ListBoxItem HorizontalContentAlignment="Stretch">
    <StackPanel>
        <TextBlock><Run Text="My computer"/></TextBlock>
        <TextBlock Foreground="{DynamicResource {x:Static SystemColors.ControlDarkBrushKey}}">
            <TextBlock.Style>
                <Style>
                    <Style.Triggers>
                        <DataTrigger Binding="{Binding IsSelected, RelativeSource={RelativeSource AncestorType={x:Type ListBoxItem}}}" Value="True">
                            <Setter Property="TextBlock.Foreground" Value="White" /> <!-- THIS LINE #### How can I get this work? -->
                            <Setter Property="TextBlock.Background" Value="Blue" /> <!-- This line here for debugging purposes (to show that these really are called) -->
                        </DataTrigger>
                    </Style.Triggers>
                </Style>
            </TextBlock.Style>
            <Run Text="localhost"/>
        </TextBlock>
    </StackPanel>
</ListBoxItem>
</ListBox>

次のトリガーを取得して値をオーバーライドするにはどうすればよいですか?

(ところで、上記の例は圧縮されているだけです。(実際のアプリケーションでは、スタイルは独自のリソースにあります。))

4

2 に答える 2

4

この投稿は、プロパティにローカル値を割り当てたときにトリガーが起動しない理由を説明している可能性があります。

于 2009-10-19T05:32:27.060 に答える
2

これは、true用とfalse用の2つのデータトリガーで実行できるはずです。

    <TextBlock>
        <TextBlock.Style>
            <Style>
                <Style.Triggers>
                    <DataTrigger Binding="{Binding IsSelected, RelativeSource={RelativeSource AncestorType={x:Type ListBoxItem}}}" Value="True">
                        <Setter Property="TextBlock.Foreground" Value="White" />
                        <Setter Property="TextBlock.Background" Value="Blue" />
                    </DataTrigger>
                    <DataTrigger Binding="{Binding IsSelected, RelativeSource={RelativeSource AncestorType={x:Type ListBoxItem}}}" Value="False">
                        <Setter Property="TextBlock.Foreground" Value="{DynamicResource {x:Static SystemColors.ControlDarkBrushKey}}" />
                    </DataTrigger>
                </Style.Triggers>
            </Style>
        </TextBlock.Style>
        <Run Text="localhost"/>
    </TextBlock>
于 2009-10-18T18:43:40.677 に答える