C# Class MassEffect.Windows.Markup.TypeConverter

Inheritance: IValueConverter
Afficher le fichier Open project: ME3Explorer/ME3Explorer

Private Properties

Свойство Type Description
DoConversion object

Méthodes publiques

Méthode Description
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.

Private Methods

Méthode Description
DoConversion ( object value, Type toType, CultureInfo culture ) : object

Method Details

Convert() public méthode

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. ///
Résultat object

ConvertBack() public méthode

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. ///
Résultat object

TypeConverter() public méthode

Initializes a new instance of the TypeConverter class.
public TypeConverter ( ) : System
Résultat System

TypeConverter() public méthode

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 ). ///
Résultat System