Untitled

 avatar
unknown
plain_text
4 months ago
518 B
3
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