Calendar Style in WPF Calendar (CalendarEdit)

Using the CalendarStyle property, you can enhance the appearance of the CalendarEdit control. This dependency property sets the calendar style for the control.

<!-- Adding calendar with calendar style as standard -->
<syncfusion:CalendarEdit Name="calendarEdit" CalendarStyle="Standard"/>
//Creating an instance of CalendarEdit control
CalendarEdit calendarEdit = new CalendarEdit();

//Setting calendar style as standard
calendarEdit.CalendarStyle = CalendarStyle.Standard;

//Adding CalendarEdit as window content
this.Content = calendarEdit;