Method | Description | |
---|---|---|
Convert ( object values, |
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.
|
Method | Description | |
---|---|---|
IValueConverter ( object value, |
public abstract Convert ( object values, |
||
values | object | The source data being passed to the target. |
targetType | The |
|
parameter | object | An optional parameter to be used in the converter logic. |
culture | The culture of the conversion. | |
return | object |
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 |
parameter | object | An optional parameter to be used in the converter logic. |
culture | System | The culture of the conversion. |
return | object[] |