<Window
xmlns:local="clr-namespace:WpfApp1"
mc:Ignorable="d"
xmlns:system="clr-namespace:System;assembly=mscorlib"
Title="MainWindow" Height="450" Width="800">
<Grid>
<syncfusion:CalendarEdit Grid.Column="0" Grid.Row="0"
x:Name="calendarEdit"
VerticalAlignment="Center"
HorizontalAlignment="Center"
Width="350"
Height="300">
<syncfusion:CalendarEdit.BlackoutDates>
<syncfusion:BlackoutDatesRange StartDate="1/01/1900" EndDate="{x:Static system:DateTime.Today}"/>
<syncfusion:BlackoutDatesRange StartDate="1/20/2019" EndDate="2/13/2020"/>
</syncfusion:CalendarEdit.BlackoutDates>
</syncfusion:CalendarEdit>
</Grid>
</Window>
|