WPF怎么快速清空所有TextBox内容
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF怎么快速清空所有TextBox内容相关的知识,希望对你有一定的参考价值。
参考技术A 在页面的右上角;有一个按键 参考技术B Textname.Clear();textname是你自己控件的名字
wpf,当textbox绑定的value是int,decimal等数值类型时,当textbox 清空的时候,导致value仍然是原来的值的解决办法
public class ValueConverter : IValueConverter public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) return value; public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) if (value is string && (string)value == "") return 0; return value;
view
Text="Binding SupplyQuantity, Converter=StaticResource ValueConverter, UpdateSourceTrigger=PropertyChanged"
以上是关于WPF怎么快速清空所有TextBox内容的主要内容,如果未能解决你的问题,请参考以下文章
wpf,当textbox绑定的value是int,decimal等数值类型时,当textbox 清空的时候,导致value仍然是原来的值的解决办法