CalendarBlackoutDatesCollection.AddDatesInPast Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Adds all dates before Today to the collection.
public:
void AddDatesInPast();
public void AddDatesInPast ();
member this.AddDatesInPast : unit -> unit
Public Sub AddDatesInPast ()
Examples
The following example creates a Calendar that includes a Loaded event handler.
<Calendar Name="calendar1" Loaded="calendar1_Loaded"/>
The following example shows the Loaded event handler. The event handler calls the AddDatesInPast method to make only future dates selectable.
private void calendar1_Loaded(object sender, RoutedEventArgs e)
{
Calendar cal = sender as Calendar;
cal.BlackoutDates.AddDatesInPast();
}
Private Sub calendar1_Loaded(ByVal sender As System.Object, ByVal e As System.Windows.RoutedEventArgs)
Dim cal = TryCast(sender, Calendar)
cal.BlackoutDates.AddDatesInPast()
End Sub
Remarks
Use this method to prevent users from selecting dates that are in the past.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.