Unplanned
Last Updated: 30 Mar 2016 13:22 by ADMIN
ADMIN
Dimitar
Created on: 22 May 2014 07:28
Category: Editors
Type: Bug Report
1
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();
}
0 comments