当我们通过资源将ListView与DataTemplate一起使用时,绑定不起作用。(MVVM)

时间:2019-04-22 11:48:43

标签: xaml xamarin xamarin.forms xamarin.android xamarin.ios

我有一个ListView,它是从资源文件中获取的ItemTemplate

我有如下的资源字典!

<?xml version="1.0" encoding="utf-8" ?>
<ResourceDictionary xmlns="http://xamarin.com/schemas/2014/forms"
         xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
         xmlns:ffimageloading="clr-namespace:FFImageLoading.Forms;assembly=FFImageLoading.Forms"
         xmlns:common="clr-namespace:xx.Common;assembly=xx"
         x:Class="xx.ResourceDictionaries.BaseHomeStyles"> 

 <DataTemplate x:Key="ListItemTemplate">
    <ViewCell>
        <Grid Padding="{StaticResource ListPadding}">
            <Grid.RowDefinitions>
                <RowDefinition Height="1.5*"/>
                <RowDefinition Height="*"/>
            </Grid.RowDefinitions>
            <ffimageloading:CachedImage Grid.Row="0" Aspect="Fill" DownsampleToViewSize="True" BitmapOptimizations="True"
                                            ErrorPlaceholder = "nopreviewlandscape" LoadingPlaceholder = "loadingicon" Source="{Binding TripImage}" />
            <StackLayout Grid.Row="1">
                <Grid>
                    <Grid.ColumnDefinitions>
                        <ColumnDefinition Width="4*"/>
                        <ColumnDefinition Width="*"/>
                    </Grid.ColumnDefinitions>
                    <Label Grid.Column="0" Text="{Binding TripName}" FontAttributes="Bold" TextColor="{StaticResource PrimaryColor}" />
                    <Image Grid.Column="1" Source="downarrow" Rotation="-90" BackgroundColor="{Binding PrimaryColor}"/>
                </Grid>
                <Label Text="{Binding ReferenceNumber}" FontAttributes="Bold"/>
                <Label Text="{Binding TripUIStartDate}" />
                <Label Text="{Binding DaysDetails}" TextColor="{StaticResource AppQuaternaryBackground}" />
            </StackLayout>
            <!--<Grid.GestureRecognizers>
                    <TapGestureRecognizer Command="{Binding Path=BindingContext.ToItineraryCommand, Source={x:Reference HomeList}}" CommandParameter="{Binding .}"/>
                </Grid.GestureRecognizers>-->
        </Grid>
    </ViewCell>
</DataTemplate>
</ResourceDictionary>

然后我将DataTemplate用作ItemTemplate,如下所示:

<ListView HasUnevenRows = "true" ItemsSource="{Binding CurrentTripInfo}" BackgroundColor="Transparent"
       CachingStrategy="RecycleElement" x:Name="HomeList" SeparatorVisibility ="Default" Grid.Row="1" ItemTemplate="{StaticResource ListItemTemplate}" />

我正在为ResourceDictionary添加如下内容:

 <ContentPage.Resources>
    <ResourceDictionary>
        <ResourceDictionary.MergedDictionaries>
            <resources:BaseHomeStyles/>
        </ResourceDictionary.MergedDictionaries>
    </ResourceDictionary>
</ContentPage.Resources>

现在我要在这里做的是在我的Command中设置一个点击ViewModel, 通常,我这样做的方法是像在上面的示例中那样为ListView设置名称,然后使用该名称获取列表的BindingContext,然后使用它来为其设置命令,但是当我现在尝试使用此方法时,它将引发XML解析器异常:

  

Xamarin.Forms.Xaml.XamlParseException:位置38:43。找不到HomeList

引用的对象

现在我有两个问题:

1-通过上述方法对ListView设置命令的正确方法是什么?

2-如果将来我打算将其移至App.XAML(如果多次使用),那如何设置命令呢?

1 个答案:

答案 0 :(得分:2)

抱歉,误导性链接,我刚刚了解您的问题。

您可以使用ListView Behaviors解决您的问题,它比将命令绑定到后面的代码上是如此花哨且易于阅读。

您可以按照下面的链接查看操作方式,然后将其转换为仅一种行为并传递一个事件名称,然后使用GetRuntimeEvent(eventName)和{{1查找事件}},最后一个方法返回的对象。

最后,您的列表视图将如下所示:

AddEventHandler()

https://devblogs.microsoft.com/xamarin/turn-events-into-commands-behaviors/