Autocomplete list disappears

Autocomplete list disappears

Anonymous
Not applicable
1,847 Views
2 Replies
Message 1 of 3

Autocomplete list disappears

Anonymous
Not applicable

I have created a Textbox with autocomplete (suggest) in my UserControl that is put in an Autodesk.AutoCAD.Windows.PaletteSet. When I move my mouse over the dropdown list with the suggestions from autocomplete the list disappears. This makes it impossible to select a value from the list with the mouse. If I move the mouse cursor anywhere else in the usercontrol except over the dropdown list it stays open. How can this be fixed???

 

PS! I have added an eventhandler on textbox.focuslost and it is activated when I move the mouse over the dropdown list, so the textbox loses focus when this happens. (if that is any help)

 

 

0 Likes
Accepted solutions (1)
1,848 Views
2 Replies
Replies (2)
Message 2 of 3

Balaji_Ram
Alumni
Alumni
Accepted solution

Hello Fredrik,

 

I have seen such behavior of a combobox losing its focus when placed in a paletteset.

 

The work-around that seems to resolve the issue is to set the "PaletteSet.KeepFocus" to true in "MouseEnter" event handler of the control and set it to false from the "MouseLeave" event handler of the control.

 

Hope this helps.

 

 



Balaji
Developer Technical Services
Autodesk Developer Network

0 Likes
Message 3 of 3

Anonymous
Not applicable

Thanks, that seems to be the solution. I set the "Palette.KeepFocus" to TRUE from the "MouseLeave" event handler of the textbox.

0 Likes