在我的uwp应用程序中,我有一个ListView
,但它是固定的高度而不是可滚动的>我知道stackoverflow上有很多类似的问题,但没有一个对我有帮助。
这是我的代码:
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="*"></RowDefinition>
</Grid.RowDefinitions>
<TextBlock Text="{x:Bind Reply.heading}"
FontSize="20"
Grid.Row="0"
Margin="10"/>
<ListView ItemsSource="{x:Bind Reply.faq, Mode=OneWay}"
SelectionMode="None"
IsHitTestVisible="False"
Grid.Row="1">
<ListView.ItemTemplate>
<DataTemplate x:DataType="models:FaqItem">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="*"></RowDefinition>
</Grid.RowDefinitions>
<TextBlock Text="{x:Bind question, Mode=OneWay}"
FontWeight="SemiBold"
TextWrapping="WrapWholeWords"
FontSize="18"/>
<TextBlock Text="{x:Bind answer, Mode=OneWay}"
Grid.Row="1"
FontSize="16"
TextWrapping="WrapWholeWords"
Margin="0, 0, 0, 20"/>
</Grid>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</Grid>
答案 0 :(得分:0)
滚动无效,因为您正在设置IsHitTestVisible="False"
,因此请删除该行,如果您想要一个具有自动高度的ListView,请按以下方式设置VerticalAllignment="Top"
:
....
<ListView ItemsSource="{x:Bind Reply.faq, Mode=OneWay}"
SelectionMode="None"
VerticalAlignment="Top"
Grid.Row="1">
....