C# Класс ERP.NotOperatorValueConverter

Two way IValueConverter that lets you bind the inverse of a boolean property to a dependency property
Наследование: IValueConverter
Показать файл Открыть проект

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

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

Converts the given value to be its inverse

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

The inverse of the Convert.

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

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

Converts the given value to be its inverse
public Convert ( object value, Type targetType, object parameter, System culture ) : object
value object The bool value to convert.
targetType System.Type The type to convert to (ignored).
parameter object Optional parameter (ignored).
culture System The culture of the conversion (ignored).
Результат object

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

The inverse of the Convert.
public ConvertBack ( object value, Type targetType, object parameter, System culture ) : object
value object The value to convert back.
targetType System.Type The type to convert to (ignored).
parameter object Optional parameter (ignored).
culture System The culture of the conversion (ignored).
Результат object