0
DockPanelの左または右にドッキングできるStackPanelがあります。 StackPanelの項目は、祖先のように同じ側にドッキングする必要があります。テストのために私はビジュアルツリーで祖先の名前を取得しますが、私はどのようにDocking.Dockにバインドするのか分かりません。前もって感謝します。祖先へのバインディングStackPanel DockPanel.Dock
<DockPanel>
<StackPanel x:Name="RightHandContainer" DockPanel.Dock="Right">
<v:MyUsercontrol TextCaption="Hard-Coded Alignment Works" Alignment="Right" />
<v:MyUsercontrol TextCaption="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType=StackPanel, AncestorLevel=1}, Path=Name}"
Alignment="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType=StackPanel, AncestorLevel=1}, Path=Docking.Dock}" />
<!-- TextCaption is is a dependencyproperty of Type string, works fine ... my Text object automatically gets 'RightHandContainer' -->
<!-- Alignment is is a dependencyproperty of Type Dock, like Docking.Dock ... Binding will not work :(-->
</StackPanel>
</DockPanel>
素晴らしい作品です、ありがとうございます。 – LaWi