Is there any event which fires on double-click event on WPF Window border?
How I can catch it?
Thanks!
Sorry for being late to the party, but I'd like to suggest that you're better off with the first answer (by Jaster) to Why doesnt WPF border control have a mousedoubleclick event?.
It's way more cleaner and doesn't even use one single line of code behind, hence it's fully MVVM-compliant and should be your way to go.
Note: Of course, you have to replace YourBindableCommand
with the appropriate command, probably provided by your ViewModel. If you need help on that, just let me know.