ListBox 内の 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>
「短いテキスト」のアイテムを最初のアイテムと同じ高さにしたいです(通常、折り返しのために行が増えます)。