C# Class MediaOwl.Core.BoolInvertConverter

An IValueConverter which inverts bool.
Inheritance: IValueConverter
Mostra file Open project: Slesa/Playground

Public Methods

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

Inverts a boolean value

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

Inverts a boolean value. This method is called only in F:System.Windows.Data.BindingMode.TwoWay bindings.

Method Details

Convert() public method

Inverts a boolean value
public Convert ( object value, Type targetType, object parameter, CultureInfo culture ) : object
value object The source data being passed to the target.
targetType System.Type The of data expected by the target dependency property.
parameter object An optional parameter to be used in the converter logic.
culture System.Globalization.CultureInfo The culture of the conversion.
return object

ConvertBack() public method

Inverts a boolean value. This method is called only in F:System.Windows.Data.BindingMode.TwoWay bindings.
public ConvertBack ( object value, Type targetType, object parameter, CultureInfo culture ) : object
value object The target data being passed to the source.
targetType System.Type The of data expected by the source object.
parameter object An optional parameter to be used in the converter logic.
culture System.Globalization.CultureInfo The culture of the conversion.
return object