C# Class WinRTXamlToolkit.Controls.CalendarDateRange

Represents a range of dates in a T:WinRTXamlToolkit.Controls.Calendar.
Mostrar archivo Open project: xyzzer/WinRTXamlToolkit Class Usage Examples

Public Methods

Method Description
CalendarDateRange ( System.DateTime day ) : System

Initializes a new instance of the T:WinRTXamlToolkit.Controls.CalendarDateRange class with a single date.

CalendarDateRange ( System.DateTime start, System.DateTime end ) : System

Initializes a new instance of the T:WinRTXamlToolkit.Controls.CalendarDateRange class with a range of dates.

Private Methods

Method Description
ContainsAny ( CalendarDateRange range ) : bool

Returns true if any day in the given DateTime range is contained in the current CalendarDateRange.

Method Details

CalendarDateRange() public method

Initializes a new instance of the T:WinRTXamlToolkit.Controls.CalendarDateRange class with a single date.
public CalendarDateRange ( System.DateTime day ) : System
day System.DateTime The date to be represented by the range.
return System

CalendarDateRange() public method

Initializes a new instance of the T:WinRTXamlToolkit.Controls.CalendarDateRange class with a range of dates.
public CalendarDateRange ( System.DateTime start, System.DateTime end ) : System
start System.DateTime /// The start of the range to be represented. ///
end System.DateTime The end of the range to be represented.
return System