Skip to content

Instantly share code, notes, and snippets.

@tugcearar
Created July 15, 2018 13:16
Show Gist options
  • Save tugcearar/80558b580f295093a4999fd3eb3f77fa to your computer and use it in GitHub Desktop.
Save tugcearar/80558b580f295093a4999fd3eb3f77fa to your computer and use it in GitHub Desktop.
public class Converter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
return !(bool)value;
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
return !(bool)value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment