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
public FieldDragActionToSourceConverter()
Properties
ColumnSource
Uri
Gets or set an Uri that the Convert(object, Type, object, CultureInfo) would return for MoveToColumns.
public Uri ColumnSource { get; set; }
FilterSource
Uri
Gets or set an Uri that the Convert(object, Type, object, CultureInfo) would return for MoveToFilters.
public Uri FilterSource { get; set; }
RemoveSource
Uri
RowSource
Uri
Gets or set an Uri that the Convert(object, Type, object, CultureInfo) would return for MoveToRows.
public Uri RowSource { get; set; }
ValueSource
Uri
Gets or set an Uri that the Convert(object, Type, object, CultureInfo) would return for MoveToValues.
public Uri ValueSource { get; set; }
Methods
Converts a FieldDragAction to Uri based on ValueSource, RowSource, ColumnSource, FilterSource, RemoveSource.
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
The value to convert. Expected FieldDragAction.
targetTypeTypeThe type of the binding target property.
parameterobjectThe converter parameter to use.
cultureCultureInfoThe culture to use in the converter.
Returns:An Uri.
Not implemented. Throws NotImplementedException.
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)