I am using TimeSpanPicker in my application. Default value of the textbox in the TimeSpanPicker is something like "00:00:00" which its type is TimeSpan.
enter code here
TimeSpanPicker ts = new TimeSpanPicker ();
ts.Value = TimeSpan.Parse("00:00:00");
I am trying to change the value of timespanpicker to a string but I face with an error. How can I solve this problem?
Thanks,B