我有一个 ListView,正在添加 5 个 ListViewItem。因为第三项的高度应该采用代码中给出的行定义的其余高度。
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
对此有任何想法吗?