C# 클래스 ERP.NotOperatorValueConverter

Two way IValueConverter that lets you bind the inverse of a boolean property to a dependency property
상속: IValueConverter
파일 보기 프로젝트 열기: arthurgfonseca/ERP-Grupo5

공개 메소드들

메소드 설명
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