C# Class wpf_player.BooleanInverter

Converter class that inverts boolean state.
Inheritance: System.Windows.Markup.MarkupExtension, IValueConverter
Show file Open project: zencoders/sambatyon

Public Methods

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

Converts the boolean using the not operator

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

Not implemented method

ProvideValue ( IServiceProvider serviceProvider ) : object

Method needed for the extension system. Return the current instance.

Method Details

Convert() public method

Converts the boolean using the not operator
public Convert ( object value, Type targetType, object parameter, System culture ) : object
value object Boolean to invert
targetType System.Type
parameter object
culture System
return object

ConvertBack() public method

Not implemented method
public ConvertBack ( object value, Type targetType, object parameter, System culture ) : object
value object
targetType System.Type
parameter object
culture System
return object

ProvideValue() public method

Method needed for the extension system. Return the current instance.
public ProvideValue ( IServiceProvider serviceProvider ) : object
serviceProvider IServiceProvider
return object