Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to get set the DisplayFormat of a public property to the current cultureinfo datetime format. The class will be used for Silverlight Datagrid.

    [DisplayFormat(DataFormatString=CultureInfo.CurrentCulture.DateTimeFormat.ShortDatePattern.ToString())]
    public DateTime createDate { get; set; }

It says, only that the argument can only be constant and typeof parameter...

Any ideas?

UPDATE, I tried Lukazoid solution but the Silverlight datagrid ignores the data annotations. The datagrid colums are added in codebehind because of localization.

The column looks like this:

        DataGridTextColumn tcCreateDate = new DataGridTextColumn();
        tcCreateDate.Header = SilverlightApplication.Resources.ContentGrid.dgCreateDate;
        tcCreateDate.Binding = new Binding("createDate");
share|improve this question

2 Answers

up vote 1 down vote accepted

Attribute values must be constant or a result of the typeof syntax.

If you want to use the short date format for the current culture, use the following format string:

[DisplayFormat(DataFormatString = "{0:d}")]

Update

I can see your updated code to add the DataGridTextColumn, try this to add the StringFormat:

DataGridTextColumn tcCreateDate = new DataGridTextColumn();
tcCreateDate.Header = SilverlightApplication.Resources.ContentGrid.dgCreateDate;
tcCreateDate.Binding = new Binding("createDate") { StringFormat = "{0:d}" };

By default, silverlight uses en-US as the current culture for all bindings (regardless of your system settings), this means the StringFormat will result in a US format of the date. See here for a solution to ensure your current settings are taken into account.

share|improve this answer
Well it doesn't work as I thought. I'm using the class within a datagrid on silverlight. Do I have to set the display format for the datagrid column too? – float Jul 20 '12 at 6:20
It appears the silverlight datagrid ignores this attribute, so I would use the format string in the datagrid column (I also feel it's preferential to have the UI formatting in the UI instead of hidden in the code) – Lukazoid Jul 20 '12 at 7:13
For Localization, I'm adding the datagrid columns in codebehind instead of the xaml. Do you know, how to add this string? See my updated post. – float Jul 20 '12 at 7:58
I've updated my answer, let me know if this does what you're after. – Lukazoid Jul 20 '12 at 11:39
Thanks for your update. Now I'm getting a date format 07/20/2012. But the current culture is German, where we have the format 20.07.2012. – float Jul 20 '12 at 13:20
show 3 more comments

Tried like this

public class Foo
{
    [DataType(DataType.DateTime)]
    public DateTime createDate { get; set; }
}

This will display with the date base culture of your project

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.