我有一个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(如果多次使用),那么如何设置命令呢?
对于误导性链接感到抱歉,我刚才了解你的问题。
您可以使用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/