C# Класс MassEffect.Windows.Markup.TypeConverter

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

Private Properties

Свойство Тип Описание
DoConversion object

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

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

Attempts to convert the specified value.

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

Attempts to convert the specified value back.

TypeConverter ( ) : System

Initializes a new instance of the TypeConverter class.

TypeConverter ( Type sourceType, Type targetType ) : System

Initializes a new instance of the TypeConverter class with the specified source and target types.

Приватные методы

Метод Описание
DoConversion ( object value, Type toType, CultureInfo culture ) : object

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

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

Attempts to convert the specified value.
public Convert ( object value, Type targetType, object parameter, CultureInfo culture ) : object
value object /// The value to convert. ///
targetType System.Type /// The type of the binding target property. ///
parameter object /// The converter parameter to use. ///
culture System.Globalization.CultureInfo /// The culture to use in the converter. ///
Результат object

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

Attempts to convert the specified value back.
public ConvertBack ( object value, Type targetType, object parameter, CultureInfo culture ) : object
value object /// The value to convert. ///
targetType System.Type /// The type of the binding target property. ///
parameter object /// The converter parameter to use. ///
culture System.Globalization.CultureInfo /// The culture to use in the converter. ///
Результат object

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

Initializes a new instance of the TypeConverter class.
public TypeConverter ( ) : System
Результат System

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

Initializes a new instance of the TypeConverter class with the specified source and target types.
public TypeConverter ( Type sourceType, Type targetType ) : System
sourceType System.Type /// The source type (see ). ///
targetType System.Type /// The target type (see ). ///
Результат System