ClassFieldDragActionToSourceConverter
An IValueConverter that converts a FieldDragAction to Uri. Generally used to display icons.
Definition
Namespace:Telerik.Windows.Controls.FieldList
Assembly:Telerik.Windows.Controls.PivotFieldList.dll
Syntax:
public class FieldDragActionToSourceConverter : IValueConverter
Inheritance: objectFieldDragActionToSourceConverter
Implements:
Constructors
FieldDragActionToSourceConverter()
Declaration
public FieldDragActionToSourceConverter()
Properties
ColumnSource
Gets or set an Uri that the Convert(object, Type, object, CultureInfo) would return for MoveToColumns.
Declaration
public Uri ColumnSource { get; set; }
Property Value
Uri
FilterSource
Gets or set an Uri that the Convert(object, Type, object, CultureInfo) would return for MoveToFilters.
Declaration
public Uri FilterSource { get; set; }
Property Value
Uri
RemoveSource
Declaration
public Uri RemoveSource { get; set; }
Property Value
Uri
RowSource
Gets or set an Uri that the Convert(object, Type, object, CultureInfo) would return for MoveToRows.
Declaration
public Uri RowSource { get; set; }
Property Value
Uri
ValueSource
Gets or set an Uri that the Convert(object, Type, object, CultureInfo) would return for MoveToValues.
Declaration
public Uri ValueSource { get; set; }
Property Value
Uri
Methods
Convert(object, Type, object, CultureInfo)
Converts a FieldDragAction to Uri based on ValueSource, RowSource, ColumnSource, FilterSource, RemoveSource.
Declaration
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
Parameters
value
The value to convert. Expected FieldDragAction.
targetType
The type of the binding target property.
parameter
The converter parameter to use.
culture
The culture to use in the converter.
Returns
An Uri.
ConvertBack(object, Type, object, CultureInfo)
Not implemented. Throws NotImplementedException.
Declaration
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
Parameters
value
targetType
parameter
culture
Returns