PowerToys/Plugins/Wox.Plugin.Program/StringEmptyConverter.cs

27 lines
742 B
C#
Raw Normal View History

2014-03-29 14:42:43 +08:00
using System;
using System.Windows.Data;
using System.Windows.Markup;
namespace Wox.Plugin.Program
2014-03-29 14:42:43 +08:00
{
public class StringEmptyConverter : MarkupExtension, IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
return string.IsNullOrEmpty((string)value) ? parameter : value;
}
public object ConvertBack(
object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
throw new NotSupportedException();
}
public override object ProvideValue(IServiceProvider serviceProvider)
{
return this;
}
}
}