Class
ResourcesSeparatorConverter

Represents converter that converts collection of ResourceItem into a formatted string value.

Definition

Namespace:Telerik.UI.Xaml.Controls

Assembly:Telerik.WinUI.Controls.dll

Syntax:

cs-api-definition
public class ResourcesSeparatorConverter : IValueConverter

Inheritance: objectResourcesSeparatorConverter

Implements: IValueConverter

Constructors

ResourcesSeparatorConverter()

Declaration

cs-api-definition
public ResourcesSeparatorConverter()

Methods

Convert(object, Type, object, string)

Modifies the source data before passing it to the target for display in the UI.

Declaration

cs-api-definition
public object Convert(object value, Type targetType, object parameter, string language)

Parameters

value

object

The source data being passed to the target.

targetType

Type

The Type of data expected by the target dependency property.

parameter

object

An optional parameter to be used in the converter logic.

language

string

The language of the conversion.

Returns

object

String that represents the display name of each resource with a comma-separator.

ConvertBack(object, Type, object, string)

Converts a value.

Declaration

cs-api-definition
public object ConvertBack(object value, Type targetType, object parameter, string language)

Parameters

value

object

The value that is produced by the binding target.

targetType

Type

The type to convert to.

parameter

object

The converter parameter to use.

language

string

The language of the conversion.

Returns

object

A converted value.

Remarks

This method is not implemented. Throws NotImplementedException.