XAML中的Xamarin.Forms ListView AutoHeight

问题描述 投票:1回答:1

我有ViewView的ListView,它的ViewCell包含带有大文本的Label。如何制作自动高度ViewCell ???

问题Screenshot of issue 的屏幕截图

我的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>

感谢大家!

c# xaml listview xamarin.forms
1个回答
2
投票
© www.soinside.com 2019 - 2024. All rights reserved.