0
我有一個窗口wpf應用程序,呈現項目列表。 我希望將列表呈現在右側,而不是現在的左側。 附帶了我的部分xaml文件。 我嘗試將屬性horizontalalignment附加到文本塊和圖像,但沒有任何更改。水平對齊向右+ wpf
<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>
我支持任何你可以提供的幫助。 謝謝,hadas。