My program needs to display a TimeSpan with days expressed in hours. For example,take the following TimeSpan:
var someTimeSpan = TimeSpan.FromHours(50);
The RadTimeSpanPicker displays the value and allows it to be edited in this format:
2.2:00:00
However, I need it to display the value and allow it to be edited in this format:
50:00:00
I grant that the way this is done out of the box is the way most would want it, and that I am asking for something special.