I am implementing an application, and when you start this application, you have a main screen maximized over the whole screen, but also a popup appears. I want that as long as my pop up isn’t closed, the user can’t do anything in the main screen behind this popup (like when you have an error message or something)? It is probably some property but can’t find it out. Someone who can help me out please? I am working in WPF and C#.
I am implementing an application, and when you start this application, you have a
Share
Popups are not not meant for this sort of thing i think. You can just use a normal
WindowandShowDialogto get a modal popup. If you don’t want the frame and everything you can style it respectively by settingAllowsTransparencytotrueandWindowStyletoNone.