You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given several LayoutAnchorables in LayoutDocumentPane (Using laOne, laTwo, laThree to represent them), the original order of them is: laOne, laTwo, laThree.
Set their IsVisible to False one by one from laOne to laThree, they are all hidden.
Then set their IsVisible to True one by one from laOne to laThree, they are all shown, but the order is changed to: laThree, laTwo, laOne.
Their PreviousContainerIndex is all 0 after they are hidden one by one, as a result the order is changed after inserting them back to LayoutDocumentPane to show them.
Is there a way to keep the order of them, such as ordering by ContentId?
Thanks.
The text was updated successfully, but these errors were encountered:
I can fix it by specifying a customized DockingManager.LayoutUpdateStrategy, but same issue happens after floating them one by one and then docking them back.
Given several
LayoutAnchorable
s inLayoutDocumentPane
(UsinglaOne
,laTwo
,laThree
to represent them), the original order of them is:laOne
,laTwo
,laThree
.Set their
IsVisible
toFalse
one by one fromlaOne
tolaThree
, they are all hidden.Then set their
IsVisible
toTrue
one by one fromlaOne
tolaThree
, they are all shown, but the order is changed to:laThree
,laTwo
,laOne
.Their
PreviousContainerIndex
is all0
after they are hidden one by one, as a result the order is changed after inserting them back toLayoutDocumentPane
to show them.Is there a way to keep the order of them, such as ordering by
ContentId
?Thanks.
The text was updated successfully, but these errors were encountered: