C# Class AC.AvalonControlsLibrary.Core.OneWayMultiValueConverter

Base class for multivalue converters that do not implement the ConvertBack method
Inheritance: IMultiValueConverter
Afficher le fichier Open project: kienaiProject/ArtOfWords

Méthodes publiques

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

Converts a value. Used in data binding. Override this method (sealed).

ConvertBack ( object value, Array targetTypes, object parameter, System.Globalization.CultureInfo culture ) : object[]

Unimplemented method for converting back. This converter can only be used for one-way binding.

Method Details

Convert() public abstract méthode

Converts a value. Used in data binding. Override this method (sealed).
public abstract Convert ( Array values, Type targetType, object parameter, System.Globalization.CultureInfo culture ) : object
values Array The array of values that the source bindings in the MultiBinding produces
targetType 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

Unimplemented method for converting back. This converter can only be used for one-way binding.
public ConvertBack ( object value, Array targetTypes, object parameter, System.Globalization.CultureInfo culture ) : object[]
value object Unused parameter
targetTypes Array Unused parameter
parameter object Unused parameter
culture System.Globalization.CultureInfo Unused parameter
Résultat object[]