如何用xamarin.forms xaml

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何用xamarin.forms xaml相关的知识,希望对你有一定的参考价值。

参考技术A 方法/步骤
1
新建的android项目,在页面中都默认会有标题栏,影响美观,要怎么去掉呢!

2
打开项目文件AndroidManifest.xml ,打开Application选择TAB页,在页面下方的Application Nodes中点选择相应的类, 配置右侧的Theme属性。

3
在弹出选择框中点选"system Resources",选择Theme.NoTitleBar项目,然后重新打开页面就行了。

XAML中的Xamarin.Forms ListView AutoHeight

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

感谢大家!

答案

在ListView上设置HasUnevenRows="true"。请参阅https://docs.microsoft.com/en-us/dotnet/api/Xamarin.Forms.ListView.HasUnevenRows?view=xamarin-forms文档

以上是关于如何用xamarin.forms xaml的主要内容,如果未能解决你的问题,请参考以下文章

关于xamarin.forms Android创建文件与写文件 (ftp)

如何为 Xamarin.Forms 中的段控件设置圆角

如何为 Xamarin Forms 应用程序创建 Nuget 包

Xamarin Forms:如何为自定义字体设置 FontAttributes Bold

我们如何处理 Xamarin Forms Picker 的完成按钮单击事件?

Xamarin Forms:如何为图像添加单击和双击?