Class
FieldDragActionToSourceConverter

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:

cs-api-definition
public class FieldDragActionToSourceConverter : IValueConverter

Inheritance: objectFieldDragActionToSourceConverter

Implements: IValueConverter

Constructors

FieldDragActionToSourceConverter()

Declaration

cs-api-definition
public FieldDragActionToSourceConverter()

Properties

ColumnSource

Gets or set an Uri that the Convert(object, Type, object, CultureInfo) would return for MoveToColumns.

Declaration

cs-api-definition
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

cs-api-definition
public Uri FilterSource { get; set; }

Property Value

Uri

RemoveSource

Gets or set an Uri that the Convert(object, Type, object, CultureInfo) would return for Remove.

Declaration

cs-api-definition
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

cs-api-definition
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

cs-api-definition
public Uri ValueSource { get; set; }

Property Value

Uri

Methods

Convert(object, Type, object, CultureInfo)

Declaration

cs-api-definition
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)

Parameters

value

object

The value to convert. Expected FieldDragAction.

targetType

Type

The type of the binding target property.

parameter

object

The converter parameter to use.

culture

CultureInfo

The culture to use in the converter.

Returns

object

An Uri.

ConvertBack(object, Type, object, CultureInfo)

Not implemented. Throws NotImplementedException.

Declaration

cs-api-definition
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)

Parameters

value

object

targetType

Type

parameter

object

culture

CultureInfo

Returns

object