using System; using System.ComponentModel; namespace InABox.Mobile { public class StringToBooleanConverter : UtilityConverter { public bool HasValue { get; set; } protected override bool Convert(string value) { var empty = String.IsNullOrWhiteSpace(value); return HasValue ? !empty : empty; } public StringToBooleanConverter() { HasValue = true; } } }