整理控件库
This commit is contained in:
@@ -9,11 +9,9 @@ namespace WPFluent.Converters;
|
||||
/// </summary>
|
||||
internal class StringIsEmptyConverter : IValueConverter
|
||||
{
|
||||
#region IValueConverter 成员
|
||||
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
|
||||
{ return string.IsNullOrEmpty(System.Convert.ToString(value)); }
|
||||
|
||||
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
|
||||
public object? ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
|
||||
{ return null; }
|
||||
#endregion
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user