.NET
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Autocomple te list disappears
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
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)
Solved! Go to Solution.
Re: Autocomple te list disappears
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
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
Re: Autocomple te list disappears
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Thanks, that seems to be the solution. I set the "Palette.KeepFocus" to TRUE from the "MouseLeave" event handler of the textbox.
