I want to have a window that the User can resize, and I want this window to keep the scale proportions (MVVM way if it is possible !).
I have two different approaches:
- Handling the 
SizeChangedEventand adjustWidthorHeight. Worked but the Window had really weird animations while resizing. - Handling the 
MouseUpevent, to adjustWidthorHeightwhen the User releases the button (when resizing). Unfortunately, theMouseUpevent doesn't trigger when you release the LeftButton after resizing. I couldn't useMouseBindingbecauseMouseGesturedoesn't have a "MouseUp" parameter, only aLeftClick! 
Can you help me, giving me advice, code, links or anything useful?