Xamarin 表单将单击的项目作为命令参数传递给命令

Pat*_*ick 6 c# xamarin.forms

我刚开始使用 Xamarin 表单,现在我有一个在自定义模板中显示的项目列表。

我想要的行为是在页面上下文中触发事件(使用Corcav.Behaviors),但我想将单击的项目传递给命令。我似乎无法让最后一部分工作。使用下面的实现,事件正确触发,但传递的参数是 MyEventsListModel 但我想要点击的项目。

注意我最好在 xaml/viewmodel 中而不是在代码隐藏中想要一个解决方案。两个事件都在事件上触发的替代解决方案也很好。

Xml:

<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             xmlns:behaviors="clr-namespace:Corcav.Behaviors;assembly=Corcav.Behaviors"
             x:Class="TheEventsApp.Mobile.MyEventsList"
             Title="My Events"
             x:Name="MainPage">
    <ListView ItemsSource="{Binding Events}">
        <behaviors:Interaction.Behaviors>
            <behaviors:BehaviorCollection>
                <behaviors:EventToCommand EventName="ItemTapped" Command="{Binding NavigateToEventDetails}" CommandParameter="{Binding .}" />
            </behaviors:BehaviorCollection>
        </behaviors:Interaction.Behaviors>
        <ListView.ItemTemplate>
            <DataTemplate>
                <ViewCell>
                    <StackLayout Orientation="Vertical">
                        <Label Text="{Binding Name}" />
                    </StackLayout>
                </ViewCell>
            </DataTemplate>
        </ListView.ItemTemplate>
    </ListView>
</ContentPage>
Run Code Online (Sandbox Code Playgroud)

视图模型:

 [ImplementPropertyChanged]
 public class MyEventsListModel : FreshBasePageModel
 { 
    private readonly EventsDatastore eventsStore;

    public MyEventsListModel(EventsDatastore eventsStore)
    {
        this.eventsStore = eventsStore;
    }

    protected async override void ViewIsAppearing(object sender, EventArgs e)
    {
        this.Events = await eventsStore.GetMyEventsAsync();
    }

    public ObservableCollection<Event> Events { get; set; } = new ObservableCollection<Event>();

    public Command NavigateToEventDetails
    {
        get
        {
            return new Command(async (clickedEvent) =>
            {
                await CoreMethods.PushPageModel<EventDetailsPageModel>(clickedEvent);
            });
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

Pat*_*ick 4

解决方案相当简单。深入研究 Corcav 的源代码后,很容易弄清楚它。EventToCommand.cs中的以下代码

private void OnFired(EventArgs e)
{
    object param = this.PassEventArgument ? e : this.CommandParameter;

    if (!string.IsNullOrEmpty(this.CommandName))
    {
        if (this.Command == null) this.CreateRelativeBinding();
    }

    if (this.Command == null) throw new InvalidOperationException("No command available, Is Command properly set up?");

    if (e == null && this.CommandParameter == null) throw new InvalidOperationException("You need a CommandParameter");

    if (this.Command != null && this.Command.CanExecute(param))
    {
        this.Command.Execute(param);
    }
}
Run Code Online (Sandbox Code Playgroud)

处理它。只需将“PassEventArgument”设置为 true 就解决了我的问题。

<behaviors:EventToCommand EventName="ItemTapped" Command="{Binding NavigateToEventDetails}" PassEventArgument="True" />
Run Code Online (Sandbox Code Playgroud)