Unplanned
Last Updated: 07 Nov 2017 08:33 by ADMIN
ADMIN
Vladimir Stoyanov
Created on: 02 Nov 2017 09:51
Category: AutoCompleteBox
Type: Bug Report
1
AutoCompleteBox: The cursor is not changing back to arrow when it leaves the control
When you start typing, the dropdown appears and then you leave the AutoCompleteBox without clicking, the cursor is not changing back to arrow.

As a workaround of the issue you could manually release the mouse capture in the Populated event handler of the control as shown below:


 private void AutoCompleteBox_Populated(object sender, System.EventArgs e)
        {
            if (Mouse.Captured is RadAutoCompleteBox)
            {
                (sender as RadAutoCompleteBox).ReleaseMouseCapture();
            }
        }
0 comments