New to Telerik UI for WPFStart a free 30-day trial

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

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.ScheduleView.dll

Syntax:

C#
public class ResourcesSeparatorConverter : IValueConverter

Inheritance: objectResourcesSeparatorConverter

Implements: IValueConverter

Constructors

C#
public ResourcesSeparatorConverter()

Methods

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

C#
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
Parameters:valueobject

The source data being passed to the target.

targetTypeType

The Type of data expected by the target dependency property.

parameterobject

An optional parameter to be used in the converter logic.

cultureCultureInfo

The culture of the conversion.

Returns:

object

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

Converts a value.

C#
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
Parameters:valueobject

The value that is produced by the binding target.

targetTypeType

The type to convert to.

parameterobject

The converter parameter to use.

cultureCultureInfo

The culture to use in the converter.

Returns:

object

A converted value.

Remarks:

This method is not implemented. Throws NotImplementedException.