I have a Toggle button and a popup in Xaml. popup's IsOpen bound to toggle button's IsChecked and the Popup's StaysOpen is set to false. So the popup will get open when the toggle button checked and close if unchecked. This works fine.
My problem is i have opened the popup and click away from popup, this close my popup due to its stays open false and if i tried to open the popup by clicking the toggle button, popup not get open. Since it is in checked state, and its turn into unchecked state. so its not open the popup.
Any idea, How may i handle this?
Sankar