Click here to Skip to main content
Licence CPOL
First Posted 20 Oct 2009
Views 9,535
Downloads 44
Bookmarked 11 times

Passing dates in XAML

By | 20 Oct 2009 | Article
An article demonstrating how to pass date values in XAML as property values.

Introduction

What this article will show is how to pass DateTime values into properties in XAML.

Background

Recently, I had the need for an encapsulated, reusable 'About Box' control that I could use throughout a number of Silverlight applications. I then wrote a user control that would serve this purpose. The AboutBox displays application releases that are grouped by the application version, and a list of changes/updates included in that version. An example of this can be seen below:

About Box example

Although the use and implementation of the AboutBox user control is beyond the scope of this article, one of the features of the AboutBox was to enable the developer to specify a date for a product release item. I made provision for this by creating a DateTime property called Date in the VersionInformation class. However, I encountered a problem when trying to specify a value for this property in the XAML of the page consuming the AboutBox user control, as follows:

<applesControls:AboutBox Margin="5">
    <applesControls:AboutBox.ItemsSource>
        <applesClasses:VersionInformation VersionNumber="1.0.0.0" Date="12 January 2009">
        <applesClasses:VersionInformation.Changes>
            <applesClasses:Change Item="First release." />
        </applesClasses:VersionInformation.Changes>
        </applesClasses:VersionInformation>
    </applesControls:AboutBox.ItemsSource>
</applesControls:AboutBox>

I realized that XAML natively does not know how to convert a string to a DateTime value, and setting the Date property as Date="12 January 2009" would result in an AG_E_UNKNOWN_ERROR XAML parser error when running the application.

Thankfully, there is a way to resolve this. The answer lies in TypeConverter.

Using the Code

The sample code has been written as a Visual Studio 2008 SP1 solution that contains three projects:

  1. 46ApplesAboutBox
  2. This is a Silverlight 3 application that consists of a MainPage.xaml to display the AboutBox user control.

  3. 46ApplesAboutBox.Common
  4. A Silverlight 3 Class Library that contains the following class declarations:

    • VersionInformation
    • DateTypeConverter
    • The AboutBox user control
  5. 46ApplesaboutBox.Web
  6. An ASP.NET web application that hosts the 46ApplesAboutBox Silverlight application.

To run the demo:

  • Extract the zip archive (46ApplesAboutBox.zip) containing the solution to disk.
  • Make 46ApplesaboutBox.Web the startup project.
  • Set 46ApplesAboutBoxTestPage.aspx as the startup page.

Writing a Custom TypeConverter

For us to pass in a DateTime value as a custom property in XAML, we need to write a TypeConverter. For the AboutBox project, I created a class called DateTypeConverter that inherits from and overrides methods in the TypeConverter class. One of the more interesting methods that were overridden is the ConvertFrom method.

public override object ConvertFrom(ITypeDescriptorContext context, 
                       CultureInfo culture, object value)
{
    if (value.GetType() == typeof(string))
    {
        try
        { return DateTime.Parse(value.ToString()); }
        catch
        { throw new InvalidCastException(); }
    }
    return base.ConvertFrom(context, culture, value);
}

This method is responsible for converting the specified string representation of the date to the intended DateTime value.

One more thing remains. We need to tell the Date property in our VersionInformation class that we want to use a custom type converter that will perform the conversion from a string to a DateTime. This is accomplished by adding a TypeConverter attribute to the Date property, as follows:

[TypeConverter(typeof(DateTypeConverter))]
public DateTime Date
{
    get { return (DateTime)GetValue(_dateProperty); }
    set { SetValue(_dateProperty, value); }
}

This will now allow us to pass in a "12 January 2009" string into the Date property, and it will be converted to and treated as a DateTime value.

License

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

About the Author

Wayne Delport

Software Developer

South Africa South Africa

Member



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

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralLocalization problem PinmemberNicolas Dorier23:35 20 Oct '09  
GeneralRe: Localization problem PinmemberWayne Delport0:17 21 Oct '09  
GeneralQuite a long way of doing things... PinmemberYogesh Jagota3:07 20 Oct '09  
GeneralRe: Quite a long way of doing things... PinmemberWayne Delport3:53 20 Oct '09  
GeneralRe: Quite a long way of doing things... PinmemberYogesh Jagota5:27 20 Oct '09  

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

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120517.1 | Last Updated 20 Oct 2009
Article Copyright 2009 by Wayne Delport
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid