Whats wrong with timespan properties? It is not editable in PropertyGrid, only one-way binding works.
I created sample project to demonstrate the bug:
https://skydrive.live.com/redir?resid=51A46BBA4E9EF07E!1225
I created sample project to demonstrate the bug:
https://skydrive.live.com/redir?resid=51A46BBA4E9EF07E!1225
<telerik:RadPropertyGrid Item="{Binding SelectedItem, ElementName=lbxItems}">
</telerik:RadPropertyGrid>
public class Item{ [Description("This property is never set from RadPropertyGrid. Why?")] public TimeSpan TimeSpanProperty { get; set; }
}