アイテムのリストを表示するウィンドウ wpf アプリケーションがあります。リストを現在のように左ではなく、右に表示したいと思います。私の部分的なxamlファイルが添付されています。テキストブロックと画像に属性 horizontalalignment を付けてみましたが、何も変わりませんでした。
<HierarchicalDataTemplate DataType="{x:Type cl:FolderData}" ItemsSource="{Binding Path=Children,UpdateSourceTrigger=PropertyChanged}">
<Border BorderThickness="1">
<!-- Drop="FolderStackPanel_PreviewDrop" -->
<StackPanel DragEnter="StackPanel_PreviewDragEnter" DragLeave="StackPanel_PreviewDragLeave"
Name="FolderStackPanel" Drop="FolderStackPanel_PreviewDrop" Orientation="Horizontal" ContextMenu="{StaticResource cmExportDelete}"
HorizontalAlignment="Right">
<Image Name="NodeIcon" Width="24" Margin="5" Height="24" Source="pack://application:,,,/ExportToolWpf;component/Images/folder_icon.png"/>
<StackPanel Orientation="Vertical" Margin="0,5,0,0" >
<TextBlock Name="NodeHeader" FontSize="11" Text="{Binding Path=FolderName}" />
<StackPanel Name="IdPanel" Orientation="Horizontal">
<TextBlock FontSize="10" Foreground="Gray" Text="Client ID:" />
<TextBlock FontSize="10" Foreground="Gray" Text="{Binding Path=ClientId}" Margin="0,0,7,0" />
<TextBlock FontSize="10" Foreground="Gray" Text="Project ID:"/>
<TextBlock FontSize="10" Foreground="Gray" Text="{Binding Path=ProjectId}" />
</StackPanel>
</StackPanel>
</StackPanel>
</Border> </HierarchicalDataTemplate>
私はあなたが提供できる助けを感謝します。ありがとう、ハダス。