如何讓ListBox內的ListBoxItems具有相同的高度?wpf中相同大小的listboxitems
<ListBox
HorizontalContentAlignment="Stretch"
ScrollViewer.HorizontalScrollBarVisibility="Disabled"
>
<ListBoxItem><TextBlock TextWrapping="Wrap">Long text that would wrap and increase height of single ListBoxItem</TextBlock></ListBoxItem>
<ListBoxItem><TextBlock TextWrapping="Wrap">Short text</TextBlock></ListBoxItem>
<ListBoxItem><TextBlock TextWrapping="Wrap">Short text</TextBlock></ListBoxItem>
</ListBox>
我想用「短文本」的項目,以相等的高度作爲第一個項目(通常會由於包皮更多線)。