如果非空,则无法通过样式触发器设置 TextBlock 文本属性 - 为什么?

发布于 2024-07-18 17:48:21 字数 592 浏览 7 评论 0原文

下面的 XAML 不起作用(鼠标悬停时文本不会更改):

<Window.Resources>
    <Style TargetType="TextBlock">
        <Style.Triggers>
            <Trigger Property="IsMouseOver" Value="true">
                <Setter Property="Text" Value="hover"/>
            </Trigger>
        </Style.Triggers>
    </Style>
</Window.Resources>
<Grid>
    <TextBlock Text="original"/>
</Grid>

但是,如果缺少 Text 属性:

 <Grid>
    <TextBlock/>
</Grid>

鼠标悬停时文本会更改。 有人知道这背后的理论吗?

The XAML below does not work (the text does not change when mousing over):

<Window.Resources>
    <Style TargetType="TextBlock">
        <Style.Triggers>
            <Trigger Property="IsMouseOver" Value="true">
                <Setter Property="Text" Value="hover"/>
            </Trigger>
        </Style.Triggers>
    </Style>
</Window.Resources>
<Grid>
    <TextBlock Text="original"/>
</Grid>

But, if the Text attribute is missing:

 <Grid>
    <TextBlock/>
</Grid>

The text does change on mouse over. Anybody knows the theory behind this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

回忆躺在深渊里 2024-07-25 17:48:21

这是一个 DependencyProperty 优先级问题,当您实际将属性设置为: 时,

<TextBlock Text="original"/>

它优先于触发器中设置的值。

请参阅

http://msdn.microsoft.com/en-us/library/ms743230 .aspx

It's a DependencyProperty precedence issue, when you actually set the property as in:

<TextBlock Text="original"/>

that takes precedence over the value set in the trigger.

see

http://msdn.microsoft.com/en-us/library/ms743230.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文