Click here to Skip to main content
Click here to Skip to main content

Calendar Planner

By , 6 May 2013
 

WeekPlanner/Calendar.png

Introduction 

During my job I was in need of a .NET WinForms control which would allow to fetch data from the database and manipulate it like in Outlook Calendar Planner (add, delete, drag items), but with a few differences. Instead of showing the time information in the left side of the control, it was necessary to retrieve and show columnar data from the database. I found some similar controls: A Professional Calendar/Agenda View That You Will Use, Calendar DayView Control, and Day, Week, and Month Calendar Controls, but none of them met my requirements. For commercial components, I didn't want to pay. So I created my own Calendar Planner.

Control Features

The control consists of rows with items and columns in the left side, as you can see from the screenshot below.

WeekPlanner/CalendarRow.png

Each item in a row can be updated individually. You can change the background color, specify text, drag it, change date, etc. In the left side of the calendar you can add columns with some text, it may be used in order to retrieve data from different data sources (for example, from DB or XML file). The component can show date intervals in two modes: daily and weekly. In daily mode, each date shows day name, as in the screenshot above. In weekly mode, the date shows the week number, as in the screenshot below. Control supports rows nesting. For this you can set a row as collapsible. 

WeekPlanner/CalendarRow2.png

Background

In order to manage the behaviour of the control, you can use different properties. Some of them are:

  • CurrentDate: gets/sets calendar date.
  • DatesIntervalMode: possible modes to show date intervals in the header.
  • DayCount: day count to show by the calendar.
  • GridCellHeight: height of each row.
  • HeaderStylemode: possible modes to fill background header.
  • IsAllowedDraggingBetweenRows: allows/disallows item drag/drop between rows.
  • ItemHeight: height of each item.
  • LeftMargin: margin of left column.
  • SelectedRowindex: gets the index of the selected row.
  • SelectedItem: gets the selected item.
  • Rows: list of rows of the calendar.
  • Items: list of items of the row. 
  • Columns: columns in the left side of the control.
  • IsAllowedTreeViewDrawing: Enables\Disables lines drawing like in tree view 

Events:

  • ItemClick: occurs when an item is clicked.
  • ItemDoubleClick: occurs when an item is double-clicked.
  • RowClick: occurs when a row is clicked.
  • RowDoubleClick: occurs when a row is double-clicked.
  • ItemDatesChanged: occurs when an item date range has changed.
  • ItemTextEdited: occurs when an item text is edited.

Using the code

The control doesn't support data binding, so you must write your own logic for rows with items saving and fetching.

Each row of the control, this is the class WeekPlannerRow with different properties (such as BackColor, Name, and others). The calendar consists of a list of rows in the class WeekPlannerRowCollection: List<WeekPlannerRow>.

In turn each row contains a list of items WeekPlannerItemCollection:List<WeekPlannerItem>. An item is the class WeekPlannerItem with some properties: StartDate, EndDate, Subject, BackColor, and others.

Also, each row has columns, and all related methods can be found in the DataColumns class. This class contains an array of classes DataValue with properties like: Name (name of column), Width (width of column), and Text (text for column header). Also, the DataValue class has a list ValueColorCollection : List<weekplanneritem>. The purpose of the ValueColor<weekplanneritem> class is to show text information in a column in different colors.

In order to add columns, you can use this code:

weekPlanner1.Columns.Add("ColumnName1", string.Empty, 150);
weekPlanner1.Columns.Add("ColumnName2", string.Empty, 150);
// 150 is the width of column

Rows adding happens this way:

// creates new instance of the List of Items, which will be added to the row
var itemCollection = new WeekPlannerItemCollection(); 
// creates new instance of item, which will be added to the row's items list
var item = new WeekPlannerItem(); 
item.StartDate = DateTime.Now.AddDays(0); 
item.EndDate = DateTime.Now.AddDays(0); 
item.Subject = "1 date"; 
item.BackColor = Color.YellowGreen; 
// adds item to the list
itemCollection.Add(item); 
// creates new instance of the columns, which will be added to the row
var ColumnRows = new DataColumns(weekPlanner1.Calendar); 
// adds random text to the column ColumnName1,
// which was created in the code snippet above
ColumnRows["ColumnName1"].Data.Add(Guid.NewGuid().ToString().Substring(0, 8)); 
// adds another random text to the column ColumnName1 
ColumnRows["ColumnName1"].Data.Add(Guid.NewGuid().ToString().Substring(0, 8)); 
// adds random text to the column ColumnName2
ColumnRows["ColumnName2"].Data.Add(Guid.NewGuid().ToString().Substring(0, 8)); 
// adds row to the calendar
weekPlanner1.Rows.Add(ColumnRows, itemCollection);

Here is the code for items adding:

// gets calendar rows collection
var rows = weekPlanner1.Rows; 
// finds selected row by index
var row = rows.ElementAt(weekPlanner1.SelectedRowIndex); 
// creates new instance of item, which will
// be added to the row's items list
var item = new WeekPlannerItem(); 
item.StartDate = DateTime.Now.AddDays(0); 
item.EndDate = DateTime.Now.AddDays(0); 
item.Subject = "Example"; 
item.BackColor = Color.YellowGreen; 
// adds item to the row
row.Items.Add(item);

History

  • 09.08.2011
    • Initial release.
  • 20.08.2011
    • Added new events OnItemDatesChanged, OnItemTextEdited.
  • 04.09.2011
    • Added new events OnItemMouseHover, OnItemMouseLeave.
  • 11.10.2011
    • Now each row increases its height individually.  
  • 24.04.2013
    • Added new property IsAllowedTreeViewDrawing, event OnRowLeftColumnClick.  
    • Added new row properties IsVisibleIsExpandedAncestorNameIsCollapsible.   

License

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

About the Author

Yury Yuhno
Software Developer Axon Cable
Latvia Latvia
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralSuper workmembergoms3rd8 May '13 - 0:09 
GeneralMy vote of 5memberFernandoUY7 May '13 - 3:48 
GeneralMy vote of 5memberRenju Vinod29 Apr '13 - 2:05 
GeneralMy vote of 5memberDaniel Cruz25 Apr '13 - 9:02 
GeneralMy vote of 5memberSudhakar Shinde24 Apr '13 - 0:59 
Questionweekends in different colormembertheBartman6927 Mar '13 - 22:25 
QuestionVery nice controlmemberMember 831661425 Feb '13 - 1:59 
Question10 minute divisionmemberpedro_portway14 Oct '12 - 7:57 
GeneralMy vote of 5memberIan A Stewart4 Sep '12 - 8:08 
QuestionToolTip into weekplanneritemmembertacho4 Sep '12 - 6:14 
QuestionHelp please : Calendar language ??memberEL HANI Abdelatif15 May '12 - 11:38 
SuggestionRe: Help please : Calendar language ??memberAlain BOURLAND17 Jul '12 - 2:32 
GeneralRe: Help please : Calendar language ??memberEL HANI Abdelatif21 Dec '12 - 11:43 
QuestionVery Nicemembervictorbos18 Oct '11 - 2:52 
GeneralRe: Very NicememberYury Yuhno18 Oct '11 - 20:53 
GeneralMy vote of 4memberSledgeHammer0114 Oct '11 - 11:39 
QuestionVB Net?memberisensa7 Oct '11 - 9:56 
AnswerRe: VB Net?memberDavidSullivan12 Oct '11 - 8:39 
GeneralMy vote of 5memberJanvdK20 Sep '11 - 8:19 
GeneralMy vote of 4memberMember 191236720 Sep '11 - 4:42 
QuestionSupport for Minutes or Hours?memberRheedHamilton19 Sep '11 - 14:35 
QuestionNice Article!memberMember 45586616 Sep '11 - 9:48 
AnswerRe: Nice Article!memberknoami18 Oct '11 - 23:19 
QuestionNice Article!memberMember 45586616 Sep '11 - 9:47 

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130513.1 | Last Updated 6 May 2013
Article Copyright 2011 by Yury Yuhno
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid