如何在listView中插入图像(Xamarin)

时间:2019-02-04 21:28:29

标签: c# listview xamarin.forms

请问如何使用XAML在listView中插入图像。

我只想举一个简单的例子:就像插入两行:香蕉和草莓以及它们的图片。

我已经看到了类似的问题并尝试了代码,但是它产生了错误。

这是我的代码:

<ListView  >

  <ListView.Template>
      <DataTemplate>
              <ImageCell  ImageSource="banana.jpg "Text="banana"/>
          <ImageCell ImageSource="strawberry.jpg" Text="Strawberry"/>
  </DataTemplate>   

  </ListView.Template>
</ListView>

我得到的错误是:

enter image description here

0 个答案:

没有答案