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

Represents converter that converts recurrence subject with parameter localization key into localized text.

Definition

Namespace:Telerik.Windows.Controls.ScheduleView

Assembly:Telerik.Windows.Controls.ScheduleView.dll

Syntax:

C#
public class AppointmentsSubjectToLocalizatedStringConverter : IValueConverter

Inheritance: objectAppointmentsSubjectToLocalizatedStringConverter

Implements: IValueConverter

Constructors

C#
public AppointmentsSubjectToLocalizatedStringConverter()

Properties

Default localization key.

C#
public string DefaultTextKey { get; set; }

Methods

Joins the recurrence subject with question text into localized text.

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

The text of the title.

targetTypeType

The type of the binding target property. This parameter is not used.

parameterobject

The question item localization key.

cultureCultureInfo

The culture to use in the converter. This parameter is not used.

Returns:

object

The localized subject string.

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.