0
我有一個數據綁定ListView,在開始使用ItemTemplate
之後,每使用ListViewItem
都使用相當奇怪的高度。WPF ListView ItemTemplate每個標籤太大空間
<ListView ItemsSource="{Binding Path=AllTvShows}">
<ListView.ItemTemplate>
<DataTemplate>
<Label FontStretch="Normal" VerticalAlignment="Center" Content="{Binding Path=Name}"/>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
這是它的樣子:
沒有ItemTemplate
標籤有正常的身高(多個相鄰)。我應該如何指定Label
以便它能夠正常顯示?