I have a WPF parent window that opens a modal dialog with the ShowDialog method when a button is clicked on the view. The parent window is blocked as expected until interaction with the pop-up ends, but the minimize, maximize and close buttons on the parent view are still available and clickable. Do you know if it is possible to disable them and if yes, how?
I also noticed that if my parent window is WinForms it works like this, only for WPF remain these 3 buttons clickable.
Note: the default behavior in WPF already provides this. Our library code was overwriting it. Issue has been solved since.