зеркало из https://github.com/DeGsoft/maui-linux.git
29 строки
766 B
C#
29 строки
766 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Linq;
|
|
using Xamarin.Forms.CustomAttributes;
|
|
using Xamarin.Forms.Internals;
|
|
|
|
namespace Xamarin.Forms.Controls.Issues
|
|
{
|
|
[Preserve(AllMembers = true)]
|
|
[Issue(IssueTracker.Github, 6644, "Android - CollectionView won't animate item remove if EmptyViewTemplate is provided ", PlatformAffected.Android)]
|
|
public partial class Issue6644 : ContentPage
|
|
{
|
|
#if APP
|
|
public Issue6644()
|
|
{
|
|
InitializeComponent();
|
|
cv.ItemsSource = new ObservableCollection<int>(Enumerable.Range(0, 10).ToList());
|
|
}
|
|
|
|
void Button1_Clicked(object sender, EventArgs e)
|
|
{
|
|
var src = ((ObservableCollection<int>)cv.ItemsSource);
|
|
if (src.Any())
|
|
src.RemoveAt(0);
|
|
}
|
|
#endif
|
|
}
|
|
} |