Click here to Skip to main content
15,867,488 members
Articles / Desktop Programming / Windows Forms
Article

Farsi Library - Working with Dates, Calendars, and DatePickers

Rate me:
Please Sign up or sign in to vote.
4.93/5 (235 votes)
21 Nov 2007MIT8 min read 2.9M   95.1K   202   471
A library to work with "Persian Calendar", "Hijri Calendar", and "Gregorian Calendar" with WinForms GUI controls designed for Persian (Farsi) or Arabic language applications in mind, but usable in any Windows application that makes use of calendars and dates.
Sample Image - Farsi Library Control

Introduction

The Persian Calendar is used in most countries where Persian is spoken, although some regions use different month names. The Persian calendar is the official calendar of Iran and Afghanistan, and is one of the alternative calendars in regions such as Kazakhstan and Tajikistan. The Persian calendar is based on a solar year and is approximately 365 days long. A year cycles through four seasons, and a new year begins when the sun appears to cross the equator from the southern hemisphere to the northern hemisphere as viewed from the center of the Earth. The new year marks the first day of the month of Farvardin, which is the first day of spring in the northern hemisphere.

Each of the first six months in the Persian calendar has 31 days, each of the next five months has 30 days, and the last month has 29 days in a common year and 30 days in a leap year. A leap year is a year that, when divided by 33, has a remainder of 1, 5, 9, 13, 17, 22, 26, or 30. For example, the year 1370 is a leap year because dividing it by 33 yields a remainder of 17. There are approximately 8 leap years in every 33-year cycle.

Since .NET Framework 1.0 and 1.1 does not provide any Persian Calendar, and Persian Calendar on .NET 2.0 has a bug and is useless, here, I'm going to show how to write the required DataType, and GUI controls to work with this DataType.

Persian Calendar Class

It seems that Microsoft forgot to provide a "Persian Calendar" on .NET 1.1, and while they do provide a class for this special kind of calendar in their second version of the Framework, they have somehow mis-calculated. We're going to write a Persian Calendar, plus a DataType to be replaced with the standard DateTime class, while maintaining the same structure. As it is required to convert standard DateTime to PersianDate, I'll be providing a converter class too. Since the use of these classes could be maximized when combined with GUI controls, I'll be providing a MonthView and a DatePicker control too.

Design-Time Integration

I've changed the design-time integration a little bit. Since some developers like to use PersianDate and others use DateTime classes to work with these libraries, I've exposed both of these properties as SelectedDate and SelectedDateTime. As for SelectedDate which has PersianDate type, there's a TypeConverter to do the conversion of Text to PersianDate instances at design time.

Theme Support

I'm using .NET 2.0 VisualStyleRenderer, which is a managed wrapper for XP styles. In addition, there are some classes to simulate Office 2003 rendering. There's also an Office 2000 style available. If theming is disabled or not supported by the OS, controls render using Office 2000 style.

Image 2

Popup and Shadows

Popup controls should have shadows. On RTL controls, shadows should be at the left-bottom of the control. All the strings used in the controls are using a localizer manager class to get the strings based on StringID enumeration.To use the localized version you should change current thread's Culture and CultureUI properties to one of the defined cultures : (AR-SA for Arabic Culture, FA-IR for Persian Culture, and InvariantCulture for English or neutral culture. Here's how to do this in the application's Main() method:

C#
//
// The main entry point for the application.
//
[STAThread]
static void Main()
{
    Thread.CurrentThread.CurrentUICulture =
            new System.Globalization.CultureInfo("fa-IR");
    Application.EnableVisualStyles();
    Application.SetCompatibleTextRenderingDefault(false);
    Application.Run(new Form1());
}

Here's the correct behavior of a popup control with standard strings and localized version for the FA-IR culture.

Image 3Image 4

Using Arabic and Neutral Cultures

I primarily used AR-AE culture for Arabic, but in version 1.3.1.0, I had to change this to AR-SA. This is because of a problem (bug?) with the Hijri Calendar not being the default calendar of AR-AE culture, while it IS the default culture for AR-SA culture. Now the control is drawn in the correct way when you set the culture to Arabic.

Rendering in neutral culture is now done in Left-To-Right order. Generally the control decides to render in RTL or LTR based on the reading order of the current culture.

Image 5

Using the Code

You can use the PersianDate class in much the same way as you use the DateTime class. Here are some examples:

C#
//
// Use of Persian date class
//
PersianDate pd1 = PersianDate.Now.ToString(); // prints 1385/01/13
// constructs a new instance with the specified vales
PersianDate pd2 = new PersianDate(1386, 4, 26); 

// You can use operator overloading, too!
if(pd1 >= pd2)
   MessageBox.Show("Date is greater or equal");

// Use of normal DateTime and Conversion
PersianDate pd3 = PersianDateConverter.ToPersianDate(DateTime.Now);
DateTime dt1 = PersianDateConverter.ToGregorianDate(PersianDate.Now);

Points of Interest

Please send any suggestions/comments/feedbacks to my email address or use the Forum at the bottom of the page. For further releases or other libraries, visit my website.

.NET 1.1 and VisualStudio .NET 2003 Support

This library is tested on VS.NET 2005 and .NET Framework version 2.0. So, it won't run on VS.NET 2003. If you REALLY need to get this going, you'll have to port this to VS.NET 2003 and you'll have to change the drawing part of the code, since it actually uses managed classes of .NET 2.0 to draw in WindowsXP style. You'll have to use a wrapper on Theme API (there is already a project in CodeProject) to do the job for you. To make the porting easier, you can also cut out all the drawings in WindowsXP and Office 2003 style, and stick to the good-old Office2000 theme which uses GDI+ classes to draw.

WPF Version

The WPF version is out. You can have a look at the Vista (Windows Presentation Foundation) section of The Code Project website. Your feedbacks and comments are greatly appreciated.

History

Version 1.9.0.0

  • Fixed: Bugs regarding wrong mapping of Persian/Arabic weekdays and Gregorian weekdays, which resulted in wrong display of weekday in Gregorian calendar.
  • Added: Better handling of multi-selection mode. You can add/remove the SelectedDateRange property and changes will be reflected on the UI.
  • Added: PersianDayOfWeek enum with correct days order.
  • Added: DayOfWeek property to PersianDate class, to return the correct day of the week.

Version 1.6.0.0

  • Fixed: Some bugs posted through feedback.
  • Added: MessageBox control with RTL and LTR views, and ability to remember the selected value, with both standard and custom MessageBox buttons.
  • Added: Custom formatting of the PersianDate.ToString() method, (like the DateTime control), which gives the functionality to return formatted strings, e.g. Long Date, Long Time, DateTime, etc.
  • Added: Custom draw of each preferred day. Could be used to draw some days in disabled format, along with the SelectedDateTimeChanging event.

Version 1.5.0.0

  • Fixed: Exceptions of the FAMonthView control when selecting a date prior to MinValue and greater than MaxValue.
  • Fixed: Broadened the range of PersianDate MinValue and MaxValue classes.
  • Fixed: Invariant Culture's MonthNames is a zero-based index. First month's name is now okay in Invariant Culture.
  • Fixed: Checking of Year, Month, Day,... values on setting the property of the PersianDate.
  • Fixed: Checking of null values on != and == operators of PersianDate.
  • Fixed: Removed duplicate DateTime and PersianDate properties and events of the GUI controls. You can convert DateTime instances directly to PersianDate.
  • Fixed: Validation process of DatePicker.
  • Added: Complete two-way binding to any data source.
  • Added: Ability to use other cultures and calendars with the controls.
  • Added: Implicit conversion of DateTime and PersianDate.
  • Added: Added Millisecond property to PersianDate class for better precision.
  • Added: PersianDate class is now serializable and implements the following interfaces: ICloneable , IComparable , IComparable<T>, IComparer , IComparer<T>, IEquatable<T>.
  • Added: Ability to select scrolling feature of FAMonthView. You can scroll through days, months, or years.
  • Added: FAThemeManager class that handles selected themes of all controls. To change the theme globally, you just need to set this class' Theme property.
  • Added: FALocalizeManager class that handles other cultures. You can now localize strings into any culture.
  • Added: ToolStrip support. Now you can integrate controls in ToolStrip, MenuStrip, etc.
  • Added: Microsoft DataGridView custom column and editor support.

Version 1.4.0.0

  • Added: Complete test and demo of the functionalities provided with the library, with source code.
  • Added: Documentation
  • Added: Diagram for PopupForms, Controls hierarchy and Painter classes.
  • Implemented correct Office 2003 look and feel on ComboBox controls.
  • Implemented correct RTL and LTR views of FADatePickerConverter.
  • Bug Fix: FADa<code>tePicker control now displays the popup calendar according to its theme.
  • Bug Fix: Correct direction of popup controls in RTL and LTR mode.
  • Bug Fix: Correct Shadow location of popup controls in RTL and LTR mode.
  • Bug Fix: FADatePicker control not showing text property correctly.
  • Changes: Relocation of namespaces.
  • Known Issues : localization of strings in Arabic language. (anyone could give me a hand there?)

Version 1.3.1.0

  • Implementing Windows 2000 drawing on non-Windows XP computers or when the visual styles are disabled.
  • Better drawing of Windows XP and Office 2003 styles.
  • Drawing the control based on user's culture. Currently these cultures are allowed: Neutral (Gregorial Calendar), AR-SA (Hijri Calendar) and FA-IR (Persian Calendar).
  • Better localization. You can use Localizer class to update strings.
  • Support for Gregorian Calendar (Neutral Culture) and Hijri Calendar.
  • Rendering Left-To-Right for Cultures that are not Right-To-Left specific (e.g. Neutral Culture, English Culture, etc.)
  • New DatePickerConverter control which converts selected date by pressing a button.

Version 1

  • Providing base classes, and GUI controls to work with "Persian Dates". Some of the features (e.g. Office 2000 drawing) are not yet implemented.

License

This article, along with any associated source code and files, is licensed under The MIT License


Written By
Software Developer (Senior) Readify
Australia Australia
Working on both Java and .NET Technology, I have developed various enterprise level applications on both platforms. Currently, I am working as a Senior Software Developer at Readify which is a leading company on .NET technology in Australia.

Comments and Discussions

 
Questionتشکر بعد از 12 سال استفاده Pin
Behzad Sedighzadeh14-Dec-20 0:46
Behzad Sedighzadeh14-Dec-20 0:46 
عزیز هر جا هستی موفق و موید باشی. 12 ساله دارم استفاده می کنم بدون مشکل. دمت گرم
Behzad

Bugمشکل در نمایش روز های هفته Pin
Mr.XOR16-Nov-20 9:04
Mr.XOR16-Nov-20 9:04 
Bugخطا در نمایش 1 خرداد 1399 Pin
v_sadeghpour17-May-20 7:48
v_sadeghpour17-May-20 7:48 
Questionبدست آوردن فاصله دو تاریخ Pin
Naghibi17-Apr-20 23:03
Naghibi17-Apr-20 23:03 
Questionخطا در فروردین 1404 Pin
payam_lool6-Apr-20 3:26
payam_lool6-Apr-20 3:26 
Questionتغییر در کامپوننت FADatePicker Pin
MehranSarrafi11-May-19 21:07
MehranSarrafi11-May-19 21:07 
Questionغیرفعال کردن روز Pin
MehranSarrafi10-May-19 20:21
MehranSarrafi10-May-19 20:21 
AnswerRe: غیرفعال کردن روز Pin
MehranSarrafi11-May-19 19:44
MehranSarrafi11-May-19 19:44 
Questiondate format Pin
khaledrakhisi27-Aug-17 4:25
khaledrakhisi27-Aug-17 4:25 
QuestionDateTimePicker for Win App Pin
Sa'id Ghadiri26-Jul-17 22:22
Sa'id Ghadiri26-Jul-17 22:22 
AnswerRe: DateTimePicker for Win App Pin
khaledrakhisi27-Aug-17 4:24
khaledrakhisi27-Aug-17 4:24 
Questionکنترل datePicker رو نمیشه دید Pin
babakmohajeri10-Jan-17 13:00
babakmohajeri10-Jan-17 13:00 
Questionاضافه کردن کامپوننت به فرم Pin
Member 1290843916-Dec-16 9:57
Member 1290843916-Dec-16 9:57 
GeneralMy vote of 5 Pin
behnam-s11-Dec-16 5:34
behnam-s11-Dec-16 5:34 
Questionمشکل تغییر تاریخ ها در باز و بستن کمبو Pin
pouria0126-Oct-16 19:21
pouria0126-Oct-16 19:21 
AnswerRe: مشکل تغییر تاریخ ها در باز و بستن کمبو Pin
Ehsan Faghih17-Mar-21 2:44
Ehsan Faghih17-Mar-21 2:44 
Questionمشکل تغییر تاریخ ها در باز و بستن کمبو Pin
pouria0126-Oct-16 19:21
pouria0126-Oct-16 19:21 
Questionمشکل کار با این کتابخانه در دات نت 4.5 Pin
navid dada14-Apr-16 5:31
navid dada14-Apr-16 5:31 
AnswerRe: مشکل کار با این کتابخانه در دات نت 4.5 Pin
Sepideh Izadi20-Apr-16 1:09
Sepideh Izadi20-Apr-16 1:09 
AnswerRe: مشکل کار با این کتابخانه در دات نت 4.5 Pin
Sepideh Izadi22-Apr-16 21:30
Sepideh Izadi22-Apr-16 21:30 
GeneralRe: مشکل کار با این کتابخانه در دات نت 4.5 Pin
Member 1403198114-Jan-19 17:47
Member 1403198114-Jan-19 17:47 
AnswerRe: مشکل کار با این کتابخانه در دات نت 4.5 Pin
saeid_j823-Jun-18 3:22
saeid_j823-Jun-18 3:22 
Questionاشكال در نشان دادن روزهاي بهمن 94 Pin
mohamraja30-Jan-16 20:16
mohamraja30-Jan-16 20:16 
Questionمشکل نمایش تعداد روز در اسفند سال 94 Pin
javadtoosi30-Dec-15 3:09
javadtoosi30-Dec-15 3:09 
Questionاشکال کوچولو Pin
Behzad Sedighzadeh23-Oct-15 6:24
Behzad Sedighzadeh23-Oct-15 6:24 

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.