-
Notifications
You must be signed in to change notification settings - Fork 320
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
AvalonDock: Hidden anchorable cannot be shown again #19
Comments
The solution to this problem is quit involved. The problem appears to be that the Docking framework has a:
which are uesd to relate items back to where they where before they are being hidden. These properties are necessary because the LayoutRoot clears out empty container and implements a CollectGarbage() method to really remove hidden items from memory and view: But the CollectGarbage() method also removes items that appear to be empty but are referenced via the LayoutContent.PreviousContainer property. This is why this resolution adds another guarding statement in the To make this work, the code that invokes the Additional testing has shown that the
All required changes for this solution can be found in a seperate branch: |
xceedsoftware/wpftoolkit#1457
The text was updated successfully, but these errors were encountered: