列表视图在Xamarin.forms中不包含'ItemsSource'的定义?

时间:2015-06-04 06:00:44

标签: c# android xamarin.ios xamarin.forms

我是视觉工作室中xamarin.forms的c#Cross-Platform新手。从此link复制了示例代码,无法找到类似定义的错误。任何人都可以给出任何解决方案或想法,为什么我会收到此错误以及我错过了它。

Main.cs

        ListView listView = new ListView
        {
            ItemsSource = presidents,
            ItemTemplate = cell // Set the ImageCell to the item template for the listview
        };

我在上面链接的复制代码中的上一行中收到错误。

2 个答案:

答案 0 :(得分:1)

看起来你正在使用Android.Widget.ListView。您需要使用Xamarin.Forms.ListView类。

答案 1 :(得分:0)

首先,您应该在此处发布您的整个代码,并发布确切的错误消息(因为它不可能为您提供完全答案)。
我想,你没有超越整个代码形式的例子......? 所以,也许找不到总统和/或单元格 如果这不是问题,你可以在这里找到(另一个)LstViews使用示例(包括描述):How to use ListView