Represents a MultiBinding converter that provides a value for the 'Due in' column of the Reminders dialog box.

Namespace:  C1.WPF.C1Schedule
Assembly:  C1.WPF.C1Schedule (in C1.WPF.C1Schedule.dll)

Syntax

C#
public class ReminderDueInMultiConverter : IMultiValueConverter
Visual Basic (Declaration)
Public Class ReminderDueInMultiConverter _
	Implements IMultiValueConverter

Remarks

ReminderDueInMultiConverter is a one-way converter. It takes as a source a list of two values - the first one is a DateTime when event will occur, and the second one is a current DateTime - and returns a string with a phrase that describes how much time stays until the event. If the second source value is not specified then the DateTime.Now value is used.

The standard Reminders dialog box uses this converter in conjunction with the ActiveDateTime object whose Now property provides a value for the second source value of the converter.

Inheritance Hierarchy

System..::..Object
  C1.WPF.C1Schedule..::..ReminderDueInMultiConverter

See Also