Untitled
unknown
plain_text
a year ago
518 B
4
Indexable
using System;
using System.Globalization;
using System.Windows;
using System.Windows.Data;
public class StringToVisibilityConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
return string.IsNullOrEmpty(value as string) ? Visibility.Collapsed : Visibility.Visible;
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}Editor is loading...
Leave a Comment