C# Класс Microsoft.HockeyApp.Tools.BooleanToVisibilityConverter

xaml converter boolean to visibility
Наследование: IValueConverter
Показать файл Открыть проект

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

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

Modifies the source data before passing it to the target for display in the UI.

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

Modifies the target data before passing it to the source object. This method is called only in TwoWay bindings.

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

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

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

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

Modifies the source data before passing it to the target for display in the UI.
public Convert ( object value, Type targetType, object parameter, string language ) : object
value object The source data being passed to the target.
targetType System.Type The type of the target property, as a type reference (System.Type for Microsoft .NET, a TypeName helper struct for Visual C++ component extensions (C++/CX)).
parameter object An optional parameter to be used in the converter logic.
language string The language of the conversion.
Результат object

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

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

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

Modifies the target data before passing it to the source object. This method is called only in TwoWay bindings.
public ConvertBack ( object value, Type targetType, object parameter, string language ) : object
value object The target data being passed to the source.
targetType System.Type The type of the target property, as a type reference (System.Type for Microsoft .NET, a TypeName helper struct for Visual C++ component extensions (C++/CX)).
parameter object An optional parameter to be used in the converter logic.
language string The language of the conversion.
Результат object