Hello,
we are using infra. UltraPopupControlContainer to display popups. The popup should be closed when user leaves particular control with tab key, or clicks with mouse to do another action.
The problem is as following: the mouse click gets "eaten" by the container and is not propagated further. Do you know how to fix something like that?
Thanks
Peter
Hi Peter,
The Popup should automatically close if it's on a standard DotNet form and you have full trust for your application.
Is this a WinForms applications? Are you using an unusual container of some kind?
it is winforms app, no non standard container
I display the popup on someControl.Enter event and close the popup on someControl.Leave event.
The scenario I'm talking about is that you enter the control and popup is displayed, then you grab your mouse and click somewhere on the form (for example on the button). The popup is dismissed properly (a good thing), but the click doesn't travel further so the button underneath doesn't get clicked.