I'm currently working on a WPF app and I am facing a situation.
To make it simple, I have a mainwindow with multiple UserControl in it. At some point, I have another window opening, and I want this window to always being focused, even if the user try to click on the other one.
I found some things about the Window.Activate() method. So I tried this solution. But it doesn't work like I would. I need my window to be the only one accessible for the user, and I don't want him to access the main one when the second one is not closed.
Obviously, I really want not to break the MVVM.
Any clue ?