如何在具有StackLayout内的网格的TableSection中模拟ViewCell?

时间:2018-07-21 07:33:56

标签: xamarin xamarin.forms

我的应用程序调用了两个模板,这些模板创建的内容类似于两个ViewCell:

<StackLayout Orientation="Horizontal" Padding="10">
   <template:DataGridTemplate Text="Updated" Label="{Binding Updated}" />
   <template:DataGridTemplate Text="Version" Label="{Binding Version}" />
</StackLayout>

这是模板XAML

<?xml version="1.0" encoding="utf-8"?>
<Grid Padding="20,0" xmlns="http://xamarin.com/schemas/2014/forms" 
      xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" 
      xmlns:local="clr-namespace:Japanese;assembly=Japanese" 
      x:Class="Japanese.Templates.DataGridTemplate" 
      x:Name="this">
    <local:StyledLabel Text="{Binding Text, Source={x:Reference this}}" HorizontalOptions="Start" VerticalTextAlignment="Center" />
    <local:StyledLabel Text="{Binding Label, Source={x:Reference this}}" HorizontalOptions="End" VerticalTextAlignment="Center" />
</Grid>

我希望模板的高度为50,并且还希望在两个模板之间创建一条线,以模拟在TableSection内的ViewCell中可以找到的东西。

有人对我该如何做有任何建议吗?我尝试将Grid的高度设置为50,但这告诉我这是一个只读属性。

1 个答案:

答案 0 :(得分:1)

StackLayout

<StackLayout Orientation="Vertical" Padding="10" Spacing="0">
    <template:DataGridTemplate Text="Updated" Label="07/21/2018" />
    <template:DataGridTemplate Text="Version" Label="1.0.0" />
</StackLayout>  

DataGridTemplate (行分隔符在此处,但可以直接添加到StackLayout中)

<?xml version="1.0" encoding="utf-8"?>
<Grid Padding="20,0" HeightRequest="50" xmlns="http://xamarin.com/schemas/2014/forms"
      xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" 
      xmlns:local="clr-namespace:Sof2" 
      x:Class="Sof2.Templates.DataGridTemplate" 
      x:Name="this">

    <Grid.ColumnDefinitions>
        <ColumnDefinition />
        <ColumnDefinition Width="Auto" />
    </Grid.ColumnDefinitions>

    <local:StyledLabel Grid.Column="0" Text="{Binding Text, Source={x:Reference this}}" VerticalTextAlignment="Center" />
    <local:StyledLabel Grid.Column="1" Text="{Binding Label, Source={x:Reference this}}" TextColor="Silver" VerticalTextAlignment="Center" />

    <!-- Separator -->
    <BoxView Grid.ColumnSpan="2" BackgroundColor="Silver" HeightRequest="1" VerticalOptions="End" />

</Grid>

结果

enter image description here

如果需要交互性,则可以适当添加TapGestureRecognizers。