-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Activation and RoutedViewHost don't play nicely together #525
Comments
Let's just fix the bug :) I think we can do something like combine Activated and HitTestVisible to make this work |
True that would also work ;-) will take a look. |
Actually irrespective of this, non-transitioning versions of these are useful for if you have annoying controls like |
@jen20 I think you can just override the template, yes? |
That's probably a better solution. |
RoutedViewHost
being derived fromTransitioningContentControl
means that whenever you navigate to a new view model, the old one is reactivated as it is loaded again when it becomes the "previous" content in theTransitioningContentControl
(at least I think that's what I'm seeing!)If that's the case, it might be an idea to have a
NonTransitioningRoutedViewHost
as well (or ideally to haveRoutedViewHost
deriving fromContentControl
andTransitioningRoutedViewHost
deriving fromTransitioningContentControl
, thought that might be a breaking change too far).I'd be happy to look into this, I have a version implemented in my project at the moment (which is for a fixed screen size so nixes the orientation stuff which makes it otherwise impossible to implement outside of the ReactiveUI assembly because of the internal
IPlatformOperations
).Any thoughts?
The text was updated successfully, but these errors were encountered: