2017-09-16 17:10:04 +03:00
|
|
|
using System;
|
|
|
|
|
2016-03-22 23:02:25 +03:00
|
|
|
namespace Xamarin.Forms
|
|
|
|
{
|
2017-09-16 17:10:04 +03:00
|
|
|
[Flags]
|
2016-03-22 23:02:25 +03:00
|
|
|
public enum ListViewCachingStrategy
|
|
|
|
{
|
|
|
|
RetainElement = 0,
|
2017-09-16 17:10:04 +03:00
|
|
|
RecycleElement = 1 << 0,
|
|
|
|
RecycleElementAndDataTemplate = RecycleElement | 1 << 1,
|
2016-03-22 23:02:25 +03:00
|
|
|
}
|
|
|
|
}
|