通过Resources将ListView与DataTemplate一起使用时绑定不起作用。(MVVM)

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

我有一个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中设置一个Click ViewModel,通常,我是怎么做的,就像我在上面的例子中设置ListView的名字然后用这个名字来获取List的BindingContext然后使用这是为它设置命令,但是当我尝试使用它时,它会抛出XML解析器异常:

Xamarin.Forms.Xaml.XamlParseException:位置38:43。找不到HomeList引用的对象

现在我有两个问题:

1-以上述方式执行命令时,向ListView设置命令的正确方法是什么?

2-如果将来我计划将其移动到App.XAML(如果多次使用),那么如何设置命令呢?

xaml xamarin xamarin.forms xamarin.android xamarin.ios
1个回答
2
投票

对于误导性链接感到抱歉,我刚才了解你的问题。

您可以使用ListView行为来解决您的问题,它比在后面的代码上绑定命令更加精巧和易于阅读。

您可以按照下面的链接查看它是如何完成的,稍后将其更好地将所有行为转换为仅一个并将事件名称传递给它,在最后一个方法返回的对象上查找GetRuntimeEvent(eventName)AddEventHandler()事件。

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

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

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

© www.soinside.com 2019 - 2024. All rights reserved.