0
我有一個沒有列的列表視圖,我希望我的3個標籤有3個不同的水平路線(左,中,右),所以當調整窗口(和ListView調整大小)第一個標籤應在最左側,2號應在中心和項目ListView上設置不同的路線
這裏的最右側的第三個是我的XAML嘗試
<ListView.ItemTemplate>
<DataTemplate>
<WrapPanel>
<Label Content="L1" Margin="0,10,0,0" VerticalAlignment="Top" Height="50" HorizontalAlignment="Left" Width="80"/>
<Label Content="L2" Margin="0,10,0,0" VerticalAlignment="Top" Height="50" HorizontalAlignment="Center" Width="80"/>
<Label Content="L3" Margin="0,10,0,0" VerticalAlignment="Top" Height="50" HorizontalAlignment="Right" Width="80"/>
</WrapPanel>
</DataTemplate>
</ListView.ItemTemplate>
謝謝,Grid還需要代替WrapPanel – iamIcarus