C# Class MahTweets.UI.Converters.BoolInvertConverter

Converter for inverting a boolean value
Inheritance: IValueConverter
Mostra file Open project: nickhodge/MahTweets.LawrenceHargrave

Public Methods

Method Description
Convert ( object value, Type targetType, object parameter, CultureInfo culture ) : object

Convert the boolean to its inverse

ConvertBack ( object value, Type targetType, object parameter, CultureInfo culture ) : object

Convert back (not implemented)

Method Details

Convert() public method

Convert the boolean to its inverse
public Convert ( object value, Type targetType, object parameter, CultureInfo culture ) : object
value object Value to convert
targetType System.Type Not Used
parameter object Not Used
culture System.Globalization.CultureInfo Not Used
return object

ConvertBack() public method

Convert back (not implemented)
Will always throw an exception
public ConvertBack ( object value, Type targetType, object parameter, CultureInfo culture ) : object
value object Not Used
targetType System.Type Not Used
parameter object Not Used
culture System.Globalization.CultureInfo Not Used
return object