I'm using the latest Toolkit (downloaded today). When setting the SelectedObject to an object containing multiple TimeSpan's, the value is being displayed as a time of day.
Example
TimeSpan value = 00:00:00 is displayed as 12:00:00 AM
TimeSpan value = 00:05:00 is displayed as 12:05:00 AM
Is this the default display for a TimeSpan? If not, why do you think this is occurring?
Comments: ** Comment from web user: BoucherS **
Example
TimeSpan value = 00:00:00 is displayed as 12:00:00 AM
TimeSpan value = 00:05:00 is displayed as 12:05:00 AM
Is this the default display for a TimeSpan? If not, why do you think this is occurring?
Comments: ** Comment from web user: BoucherS **
The PropertyGrid uses a TimeSpanEditor when a property of type TimeSpan needs to be displayed. Currently, the TimeSpanEditor sets its "Editor.Format" to "DateTimeFormat.LongTime" which has this visual :
12:05:00 AM
You can modify the TimeSpanEditor or use your own to display another format.