// (c) Copyright Microsoft Corporation.
// This source is subject to the Microsoft Public License (Ms-PL).
// Please see http://go.microsoft.com/fwlink/?LinkID=131993 for details.
// All other rights reserved.
namespace System.Windows.Controls{
/// <summary>
/// Provides data for the DateSelected and DisplayDateChanged events.
/// </summary>
public class CalendarDateChangedEventArgs : RoutedEventArgs
{
internal CalendarDateChangedEventArgs(DateTime? removedDate, DateTime? addedDate)
{
this.RemovedDate = removedDate;
this.AddedDate = addedDate;
}
/// <summary>
/// Gets the date to be newly displayed.
/// </summary>
public DateTime? AddedDate
{
get;
private set;
}
/// <summary>
/// Gets the date that was previously displayed.
/// </summary>
public DateTime? RemovedDate
{
get;
private set;
}
}
}
|