Skip to content

Instantly share code, notes, and snippets.

@grimorde
Created February 19, 2020 12:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save grimorde/49e44da4e12226319c9edf268e3bb9c4 to your computer and use it in GitHub Desktop.
Save grimorde/49e44da4e12226319c9edf268e3bb9c4 to your computer and use it in GitHub Desktop.
Boolean Negation Converter
public class BooleanNegationConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
return !(bool)value;
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
return !(bool)value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment