C# Class AC.AvalonControlsLibrary.Core.OneWayMultiValueConverter

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

Public Methods

Method 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 method

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
return object

ConvertBack() public method

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
return object[]