C# 클래스 Cauldron.XAML.ValueConverters.BooleanInvertConverter

Inverts a bool value
상속: ValueConverterBase
파일 보기 프로젝트 열기: reflection-emit/Cauldron

공개 메소드들

메소드 설명
OnConvert ( object value, Type targetType, object parameter, string language ) : object

Occures if a value is converted

OnConvertBack ( object value, Type targetType, object parameter, string language ) : object

Occures if a value is converted

메소드 상세

OnConvert() 공개 메소드

Occures if a value is converted
Always throws . This method is not implemented.
public OnConvert ( object value, Type targetType, object parameter, string language ) : object
value object The value produced by the binding source.
targetType Type The type of the binding target property.
parameter object The converter parameter to use.
language string The language to use in the converter.
리턴 object

OnConvertBack() 공개 메소드

Occures if a value is converted
Always throws . This method is not implemented.
public OnConvertBack ( object value, Type targetType, object parameter, string language ) : object
value object The value that is produced by the binding target.
targetType Type The type to convert to.
parameter object The converter parameter to use.
language string The language to use in the converter.
리턴 object