C# Класс System.Waf.Presentation.Converters.InvertBooleanConverter

Value converter that inverts a boolean value.
Наследование: IValueConverter
Показать файл Открыть проект

Открытые методы

Метод Описание
Convert ( object value, Type targetType, object parameter, CultureInfo culture ) : object
Convert ( object value, Type targetType, object parameter, string culture ) : object

Converts a boolean value into the inverted value.

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

Converts a boolean value into the inverted value.

Описание методов

Convert() публичный Метод

public Convert ( object value, Type targetType, object parameter, CultureInfo culture ) : object
value object
targetType Type
parameter object
culture System.Globalization.CultureInfo
Результат object

Convert() публичный Метод

Converts a boolean value into the inverted value.
public Convert ( object value, Type targetType, object parameter, string culture ) : object
value object The boolean value to invert.
targetType Type The type of the binding target property. This parameter will be ignored.
parameter object The converter parameter to use. This parameter will be ignored.
culture string The culture to use in the converter.
Результат object

ConvertBack() публичный Метод

public ConvertBack ( object value, Type targetType, object parameter, CultureInfo culture ) : object
value object
targetType Type
parameter object
culture System.Globalization.CultureInfo
Результат object

ConvertBack() публичный Метод

Converts a boolean value into the inverted value.
public ConvertBack ( object value, Type targetType, object parameter, string culture ) : object
value object The boolean value to invert.
targetType Type The type to convert to. This parameter will be ignored.
parameter object The converter parameter to use. This parameter will be ignored.
culture string The culture to use in the converter.
Результат object