C#/WPF 显示自定义字符串(例如用 string.empty 替换“0”)

发布于 2024-07-26 01:28:45 字数 231 浏览 5 评论 0原文

我已通过

 Text="{Binding AgeText, Mode=TwoWay}"  

如何显示字符串“0”的 string.empty 或“”以及所有其他字符串及其原始值?

谢谢你的帮助!

干杯

PS:一种方法是为字符串使用自定义 ViewModel。但如果可能的话,我更愿意直接在 XAML 中以某种方式执行此操作。

I've bound my TextBox to a string value via

 Text="{Binding AgeText, Mode=TwoWay}"  

How can I display string.empty or "" for the string "0", and all other strings with their original value?

Thanks for any help!

Cheers

PS: One way would be a custom ViewModel for the string.. but I'd prefer to do it somehow in the XAML directly, if it's possible.

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

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

发布评论

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

评论(3

潦草背影 2024-08-02 01:28:45

我认为除了使用 ViewModel 之外的唯一方法是创建一个自定义 ValueConverter。

所以基本上你的选择是:

ViewModel:

private string ageText;
public string AgeText{
    get{
        if(ageText.equals("0"))
            return string.empty;

        return ageText;
    }
    ...
}

ValueConverter:

public class AgeTextConverter : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
        if (value.Equals("0"))
            return string.Empty;

        return value;
    }

    public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {

    }
}

I think the only way beside using the ViewModel is creating a custom ValueConverter.

So basically your choices are:

ViewModel:

private string ageText;
public string AgeText{
    get{
        if(ageText.equals("0"))
            return string.empty;

        return ageText;
    }
    ...
}

ValueConverter:

public class AgeTextConverter : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
        if (value.Equals("0"))
            return string.Empty;

        return value;
    }

    public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {

    }
}
若沐 2024-08-02 01:28:45

我在 http://www.codeproject.com/KB/books/0735616485.aspx 上找到了一些东西
这会成功:

Text="{Binding AgeText, StringFormat='\{0:#0;(#0); }'}"

干杯

I found something on http://www.codeproject.com/KB/books/0735616485.aspx
This will do the trick:

Text="{Binding AgeText, StringFormat='\{0:#0;(#0); }'}"

Cheers

小猫一只 2024-08-02 01:28:45

由于 Age 属性在这里显然是一个数字,因此另一种方法是将 Age 公开为 int 并使用 BindingStringFormat 属性:

Text="{Binding Age, Mode=TwoWay, StringFormat='{}{0:#}'}"

Since the Age property is obviously a number here, an other way to go would be to expose the Age as an int and use the StringFormat attribute of the Binding:

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