When I minimize the application, Popup gets minimized too. Is there a way to prevent minimizing Popup?
EDIT: here is xaml
<Popup Name="popup" StaysOpen="True" IsOpen="True" Placement="Absolute" AllowsTransparency="True">
<Border ... />
</Popup>
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The
Popupis part of your WpfWindow therefore when the Window is minimized thePopupis also. Your best bet would be to use a NotifyIcon, there is not one native to Wpf but I have used this one by Philipp Sumi with success in the past.