Getting Started with WinForms TimeSpanPicker
This topic will walk you through the process of creating of RadTimeSpanPicker.
1. Create a blank new application and drop RadTimeSpanPicker on the form. The layout should look like this.
2. In the code behind set the value of the control.
this.radTimeSpanPicker1.Value = TimeSpan.FromDays(5);
Me.radTimeSpanPicker1.Value = TimeSpan.FromDays(5)
3. You can start the application and enter a new value.