Xamarin - 如何在 Collection View 中调用函数而不会出错?

Xamarin - How to call a function in Collection View without error?

我正在尝试使用 SelectionChanged 属性 调用 Xamarin 项目中的函数。 在这个 属性 中,我调用了一个在 cs 文件中声明的函数。 这是 XAML 代码:

<CollectionView x:Name="PCCollection" SelectionMode="Single" SelectionChanged="Cell_Tapped" AutomationId="{Binding Tipologia_Alimento}">

这是CS函数:

private async void Cell_Tapped(object sender, System.EventArgs e) {
  Console.WriteLine("Tapped");
  Console.WriteLine((sender as Cell).AutomationId.ToString());
}

当我点击 Collection View 单元格时,它会打印值“Tapped”,但它也会给我 Break Mode 错误:“The application is in break mode”。

你能帮我解决这个错误吗? 提前致谢。

您的语法无效。集合视图控件没有 AutomationId 属性.

样本

       <CollectionView ItemsSource="{Binding Monkeys}"
                    SelectionChanged="Cell_Tapped"
                    SelectionMode="Single">
        <CollectionView.ItemTemplate>
            <DataTemplate>
                <Grid Padding="10">
                    <Label Grid.Column="1"
                   Text="{Binding Name}"
                   FontAttributes="Bold" />
                </Grid>
            </DataTemplate>
        </CollectionView.ItemTemplate>

    void Cell_Tapped(object sender, SelectionChangedEventArgs e)
    {
        if (((CollectionView)sender).SelectedItem == null)
            return;

        string current = (e.CurrentSelection.FirstOrDefault() as Monkey)?.Name;
    }

您可以在此处找到更多信息

https://docs.microsoft.com/en-us/xamarin/xamarin-forms/user-interface/collectionview/selection

https://docs.microsoft.com/en-us/xamarin/xamarin-forms/user-interface/collectionview/populate-data