Click here to Skip to main content
15,881,559 members
Articles / Desktop Programming / WPF
Article

Creating an Outlook Calendar using WPF (Part 1)

Rate me:
Please Sign up or sign in to vote.
4.83/5 (72 votes)
21 Oct 2008CPOL2 min read 281K   13.9K   229   39
Recreate the Outlook Calendar using WPF.

Introduction

Microsoft Office is undoubtedly one of the best selling products in the world today! Thy always try and innovate… In this CodeProject article, I will try and recreate the Microsoft Outlook Calendar control using WPF.

All elements/controls in WPF are look-less! This reduces the need to create custom controls. A button is an element that supports clicking on it and then raising a Click event, but there is no restriction on how this button should look!

So, with my WPF think cap on, I tried to find a control that I could restyle to fit my calendar control… After trying out a few ideas, I decided to rather create a custom control.

Here are the basic elements of my custom Calendar control:

CalendarLedgerItem and CalendarLedger

Ledger.jpg

The ledger indicates the timeslot time.

CalendarTimeslotItem

Timeslot.jpg

Each day is divided into 30 minute slots (represented by CalendarTimeslotItem). CalendarTimeslotItem provides a very simple hover style to hint to the user that by clicking on the timeslot, you can add an appointment. The CalendarTimeslotItem also exposes (and raises) AddAppointmentEvent, which gets bubbled to the calendar (by clicking on the timeslot). CalendarTimeslotItem derives from ButtonBase.

C#
public static readonly RoutedEvent AddAppointmentEvent = 
    EventManager.RegisterRoutedEvent("AddAppointment", RoutingStrategy.Bubble, 
    typeof(RoutedEventHandler), typeof(CalendarTimeslotItem));

CalendarAppointmentItem

AppointmentItem.jpg

CalendarAppointmentItem is a very generic container to show an appointment (similar to ListboxItem). I cheat a little by assuming that what every “item” CalendarDay binds to will have a StartTime and EndTime property!

XML
<Setter Property="StartTime" Value="{Binding StartTime}" />
<Setter Property="EndTime" Value="{Binding EndTime}" />

[Note] I know this sucks a little… I will address this in part 2!

CalendarDay

The CalendarDay is the heart of our Outlook calendar. The CalendarDay derives from ItemsControl.

C#
protected override DependencyObject GetContainerForItemOverride()
{            
    return new CalendarAppointmentItem();
}

protected override bool IsItemItsOwnContainerOverride(object item)
{
    return (item is CalendarAppointmentItem);
}

Each “item” added to the CalendarDay will implicitly have CalendarAppointmentItem as its container. This will all “magically” work, provided that the objects bound to the ItemsControl have the StartTime and EndTime properties!

TimeslotPanel

The last part we have to cover before we look at the calendar control is the TimeslotPanel. This custom layout panel will position each “item” in the CalendarDay control based on its start and end times!

XML
<ItemsPanelTemplate>
    <local:TimeslotPanel />
</ItemsPanelTemplate>

Calendar

The Calendar adds an owner to the CalendarTimeslotItem.AddAppointmentEvent.

C#
public static readonly RoutedEvent AddAppointmentEvent = 
    CalendarTimeslotItem.AddAppointmentEvent.AddOwner(typeof(CalendarDay));

Currently, the Calendar control is the only control that explicitly “knows” what the date is! It has a CurrentDate property.

C#
public static readonly DependencyProperty CurrentDateProperty =
    DependencyProperty.Register("CurrentDate", typeof(DateTime), typeof(Calendar),
        new FrameworkPropertyMetadata((DateTime)DateTime.Now,
            new PropertyChangedCallback(OnCurrentDateChanged)));

The Calendar control also exposes two commands that can be used to change the current date:

C#
public static readonly RoutedCommand NextDay = 
       new RoutedCommand("NextDay", typeof(Calendar));
public static readonly RoutedCommand PreviousDay = 
       new RoutedCommand("PreviousDay", typeof(Calendar));

Commands.jpg

These commands are self explanatory!

I have also created a very basic model:

Model.jpg

This model is used as the data source!

C#
public static readonly DependencyProperty AppointmentsProperty =
    DependencyProperty.Register("Appointments", 
       typeof(IEnumerable<Appointment>), typeof(Calendar),
    new FrameworkPropertyMetadata(null, 
        new PropertyChangedCallback(Calendar.OnAppointmentsChanged)));

The only tricky part now is how to get the data bound to my Appointments property into my ItemsControl?

Introducing filters… Rob Conery’s MVC Storefront uses a similar approach!

C#
public static class Filters 
{ 
    public static IEnumerable<Appointment> ByDate(
           thisIEnumerable<Appointment> appointments, DateTime date) 
    { 
        var app = froma inappointments 
                  wherea.StartTime.Date == date.Date 
                  selecta; 
        return app; 
    } 
}

This extension method allows me to “filter” my appointments by date (ignoring the time). Here is how it is currently used:

C#
private void FilterAppointments()
{
    DateTime byDate = CurrentDate;
    CalendarDay day = this.GetTemplateChild("day") as CalendarDay;
    day.ItemsSource = Appointments.ByDate(byDate);

    TextBlock dayHeader = this.GetTemplateChild("dayHeader") as TextBlock;
    dayHeader.Text = byDate.DayOfWeek.ToString();
}

This approach allows me to relatively easily extend the calendar control to support a day or week view (by just adding multiple CalendarDay controls).

OutlookCalendar.jpg

And, that is it for part 1... If you found this article interesting, please vote for it, and also visit my blog!

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
South Africa South Africa
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionAdding a CheckBox to the Event object Pin
Andersmi28-Oct-19 4:46
Andersmi28-Oct-19 4:46 
QuestionHow to get the selected time from Controller Pin
karthikrameshm26-Apr-16 0:43
karthikrameshm26-Apr-16 0:43 
GeneralMy vote of 4 Pin
yangzhj28-Jul-13 15:06
yangzhj28-Jul-13 15:06 
GeneralMy vote of 5 Pin
Doudy_202021-Jun-13 5:06
Doudy_202021-Jun-13 5:06 
GeneralRe: My vote of 5 Pin
Member 110274843-Sep-14 0:34
Member 110274843-Sep-14 0:34 
GeneralRe: My vote of 5 Pin
Doudy_20203-Sep-14 1:26
Doudy_20203-Sep-14 1:26 
QuestionAdding datepicker Pin
Eng. Hudhud19-Jun-13 6:21
Eng. Hudhud19-Jun-13 6:21 
AnswerRe: Adding datepicker Pin
Member 109927715-Aug-14 3:36
Member 109927715-Aug-14 3:36 
GeneralMy vote of 5 Pin
Mr.Golffy3-Jan-13 20:45
Mr.Golffy3-Jan-13 20:45 
GeneralMy vote of 5 Pin
WikusOlivier23-Aug-12 5:56
WikusOlivier23-Aug-12 5:56 
GeneralMy vote of 5 Pin
monaShahid16-Oct-11 6:02
monaShahid16-Oct-11 6:02 
QuestionAdded appointments do not appear immediately Pin
adimas8-Sep-11 3:53
professionaladimas8-Sep-11 3:53 
QuestionInstructions for changing timeslot to rooms Pin
koolkabin@live.com21-Jun-11 7:07
professionalkoolkabin@live.com21-Jun-11 7:07 
QuestionRefresh Calendar Pin
serkan312331-May-11 1:15
serkan312331-May-11 1:15 
GeneralAdd into CalendarAppointmentItem more object (for ex. a TextBlock), but more also.... Pin
Dario Concilio4-Feb-11 22:55
Dario Concilio4-Feb-11 22:55 
GeneralMy vote of 5 Pin
Dario Concilio4-Feb-11 22:52
Dario Concilio4-Feb-11 22:52 
GeneralNeed same in Silverlight 3... Pin
Sumi .D8-Apr-10 1:59
Sumi .D8-Apr-10 1:59 
GeneralRe: Need same in Silverlight 3... Pin
heyyan14-Jun-10 23:55
heyyan14-Jun-10 23:55 
GeneralHelp Pin
eman.tabbara9-Dec-09 19:58
eman.tabbara9-Dec-09 19:58 
Questionmulti account? Pin
resideozsoy5-Oct-09 0:56
resideozsoy5-Oct-09 0:56 
QuestionCan i change? Pin
yukonn20-Aug-09 6:15
yukonn20-Aug-09 6:15 
GeneralRoutedEvent question Pin
mvtongeren30-Jun-09 21:41
mvtongeren30-Jun-09 21:41 
QuestionConveting the Outlook Control to Silverlight Pin
Anil_gupta24-May-09 6:27
Anil_gupta24-May-09 6:27 
GeneralCreating an OutLook Calendar using WPF (Part 1) Pin
Member 263050330-Dec-08 8:29
Member 263050330-Dec-08 8:29 
GeneralMy vote of 2 Pin
Charles Perreault17-Dec-08 7:01
Charles Perreault17-Dec-08 7:01 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.