tags:

views:

41

answers:

1

I can see that the PopUp dropdown of a combobox gets closed if we click anywhere else in the app. How do I give that feature to my own Popup. I dont want to give a PreviewMouseDown event handler for the RootWindow to solve this issue. Something at the level of my userControl containing this popup.

+1  A: 

Try this:

<Popup StaysOpen=”False“>
Stephen Wrighton
Thanks :) My ignorance, used that property quite a lot..
Jobi Joy