暂时改变财产

发布于 2024-12-10 17:50:16 字数 486 浏览 1 评论 0原文

是否可以通过数据模板实现一种行为,以便我可以仅更改单元格的前景色“x”秒,然后将其返回到原始颜色。

例如,我定义一个这样的数据模板:

<DataTemplate x:Key="ChangeTemplate">
            <TextBlock Text="{Binding Converter={StaticResource percentConverter}, Path=ChangePercent}" 
                                     Foreground="{Binding Converter={StaticResource decimalToColorConverter}, Path=ChangePercent}" />
        </DataTemplate>

您能否指导我如何实现该行为,以便在“x”时间后我将其更改回原来的前景色。

谢谢, SC

Is it possible to achieve through data templates a behavior so, that I can change the foreground color of a cell for just 'x' seconds and then return it to its original color.

E.g. I define a data template like this:

<DataTemplate x:Key="ChangeTemplate">
            <TextBlock Text="{Binding Converter={StaticResource percentConverter}, Path=ChangePercent}" 
                                     Foreground="{Binding Converter={StaticResource decimalToColorConverter}, Path=ChangePercent}" />
        </DataTemplate>

Can you please guide me how can I achieve the behavior so, that after 'x' amount of time I change it back to its original foreground color.

Thanks,
SC

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

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

发布评论

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

评论(1

绝影如岚 2024-12-17 17:50:16

您可以尝试使用不使用 hold-end-behavior,完成后属性会恢复到初始值。

You could try using an animation which does not use the hold-end-behavior, thus the property will return to the initial value after it is finished.

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