gpt4 book ai didi

c# - 如何使用 StringFormat 舍入绑定(bind)的 double 值

转载 作者:太空狗 更新时间:2023-10-29 18:13:39 26 4
gpt4 key购买 nike

我无法让我的 DataBinding 截断我的 slider double 值的小数位并添加一个 % 符号。我希望即使 slider 值为 89.1234,我的 View 也只显示“89%”。是否可以在 WPF DataBinding 中使用 stringFormat 来实现该行为?

<Label Content="{Binding ElementName=Slider, Path=Value}"/>

非常感谢您的帮助。

最佳答案

您不能使用绑定(bind)的 StringFormat如果您还使用 Label因为Label有一个名为 ContentStringFormat 的属性覆盖绑定(bind)的 StringFormat

要么使用 Label 的 ContentStringFormat属性

<Label Content="{Binding ElementName=Slider, Path=Value}" 
ContentStringFormat="{}{0:N0}%" />

或者切换到使用 TextBlock

    <TextBlock Text="{Binding ElementName=Slider, Path=Value, StringFormat={}{0:N0}%}" />

关于c# - 如何使用 StringFormat 舍入绑定(bind)的 double 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9397121/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com