C# Класс Windows.Mvvm.UI.Controls.EnumToVisibilityConverter

Converts an enum to the visible value, if the parameter has the same value as the enum value.
Наследование: IValueConverter
Показать файл Открыть проект

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

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

Converts the value parameter to a visibility value.

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

Converts a visibility value back to an enum value.

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

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

Converts the value parameter to a visibility value.
public Convert ( object value, Type targetType, object parameter, string language ) : object
value object The value of an enum that is to be converted.
targetType System.Type The type to which the value is to be converted. In this case it is always visibility.
parameter object A parameter that determines the value to which the value has to be equal to return visible.
language string The name of the language, so that parsing can be adjusted to cultural conventions.
Результат object

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

Converts a visibility value back to an enum value.
public ConvertBack ( object value, Type targetType, object parameter, string language ) : object
value object The value that is to be converted.
targetType System.Type The type to which the value is to be converted. In this case it is an enum type.
parameter object A parameter whose enum value is returned.
language string The name of the language, so that parsing can be adjusted to cultural conventions.
Результат object