XAML中的Xamarin.Forms ListView AutoHeight
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了XAML中的Xamarin.Forms ListView AutoHeight相关的知识,希望对你有一定的参考价值。
我有ViewView的ListView,它的ViewCell包含带有大文本的Label。如何制作自动高度ViewCell ???
我的XAML代码:
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="Physis.Movements_And_Interactions_Page" xmlns:local="clr-namespace:Physis">
<ContentPage.ToolbarItems>
<ToolbarItem x:Name="settings" Text="{Binding settings_text}" Clicked="Handle_Clicked"/>
</ContentPage.ToolbarItems>
<ContentPage.Content>
<StackLayout Margin="20,35,20,20" x:Name="Main_View2" >
<ListView x:Name="Main_Menu" ItemsSource="{Binding Planets}" ItemSelected="Handle_ItemSelected" ItemTapped="Handle_ItemTapped" BackgroundColor="{DynamicResource Key=backgroundColor}" SeparatorColor="{DynamicResource Key=textColor}">
<ListView.ItemTemplate>
<DataTemplate >
<ViewCell >
<StackLayout Orientation="Vertical" >
<Label Text="{Binding Name}" StyleClass="Body"/>
<Label Text="{Binding Description}" StyleClass="Body"/>
</StackLayout>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</StackLayout >
</ContentPage.Content>
感谢大家!
答案
在ListView上设置HasUnevenRows="true"
。请参阅https://docs.microsoft.com/en-us/dotnet/api/Xamarin.Forms.ListView.HasUnevenRows?view=xamarin-forms文档
以上是关于XAML中的Xamarin.Forms ListView AutoHeight的主要内容,如果未能解决你的问题,请参考以下文章
XAML WebView绑定到不在Xamarin Forms中的字符串
如何在 XAML [Xamarin.Forms] 中使用 String 以外的类型设置自定义属性值
是否可以在 XAML (Xamarin.Forms) 中混合 OnIdiom 和 OnPlatform?