C# Class Cimbalino.Phone.Toolkit.Converters.MultiValueConverterBase

An IValueConverter abstract implementation to be used with the Cimbalino.Phone.Toolkit.Behaviors.MultiBindingBehavior.
Inheritance: IValueConverter
Afficher le fichier Open project: Cimbalino/Cimbalino-Phone-Toolkit

Méthodes publiques

Méthode Description
Convert ( object values, Type targetType, object parameter, CultureInfo culture ) : object

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

ConvertBack ( object value, System targetType, object parameter, System culture ) : object[]

Modifies the target data before passing it to the source object. This method is called only in F:System.Windows.Data.BindingMode.TwoWay bindings.

Private Methods

Méthode Description
IValueConverter ( object value, Type targetType, object parameter, CultureInfo culture ) : object

Method Details

Convert() public abstract méthode

Modifies the source data before passing it to the target for display in the UI.
public abstract Convert ( object values, Type targetType, object parameter, CultureInfo culture ) : object
values object The source data being passed to the target.
targetType System.Type The of data expected by the target dependency property.
parameter object An optional parameter to be used in the converter logic.
culture System.Globalization.CultureInfo The culture of the conversion.
Résultat object

ConvertBack() public abstract méthode

Modifies the target data before passing it to the source object. This method is called only in F:System.Windows.Data.BindingMode.TwoWay bindings.
public abstract ConvertBack ( object value, System targetType, object parameter, System culture ) : object[]
value object The target data being passed to the source.
targetType System The of data expected by the source object.
parameter object An optional parameter to be used in the converter logic.
culture System The culture of the conversion.
Résultat object[]