为什么Xamarin ListView Cahcing策略显示"模糊参考"?

Sha*_*aku 8 xaml xamarin xamarin.forms

下面是"核心"项目中页面的屏幕截图.添加时CachingStrategy="RecycleElement",我收到了

"模糊参考"错误.

将鼠标悬停在它上面并没有提供有关如何修复它的任何其他信息,ReSharper也没有.

https://i.stack.imgur.com/KSEt5.png

Len*_*Man 11

您可以使用x:Arguments在ListView构造函数中指定RecycleElement

<ListView ...>
  <x:Arguments>
    <ListViewCachingStrategy>RecycleElement</ListViewCachingStrategy>
  </x:Arguments>
</ListView>
Run Code Online (Sandbox Code Playgroud)