FIX. RadTimePicker - when the time is selected and the drop down is closed the form is deactivated.
To reproduce:
- Select the time from the drop down and press close button.
- Notice that the form is deactivated.
Workaround:
void radTimePicker1_LostFocus(object sender, EventArgs e)
{
this.Activate();
}