C# Class WinRTXamlToolkit.Controls.CalendarDateRange

Represents a range of dates in a T:WinRTXamlToolkit.Controls.Calendar.
Afficher le fichier Open project: xyzzer/WinRTXamlToolkit Class Usage Examples

Méthodes publiques

Méthode 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

Méthode 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 méthode

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.
Résultat System

CalendarDateRange() public méthode

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.
Résultat System