maui-linux/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issu.../Bugzilla37625.cs

37 строки
1.0 KiB
C#

using System;
using System.Threading.Tasks;
using Xamarin.Forms.CustomAttributes;
#if UITEST
using Xamarin.UITest;
using NUnit.Framework;
#endif
namespace Xamarin.Forms.Controls
{
[Preserve (AllMembers = true)]
[Issue (IssueTracker.Bugzilla, 37625, "App crashes when quickly adding/removing Image views (Windows UWP)")]
public class Bugzilla37625 : TestContentPage // or TestMasterDetailPage, etc ...
{
protected override async void Init ()
{
int retry = 5;
while (retry-- >= 0) {
var imageUri = new Uri ("https://xamarin.com/content/images/pages/products/platform.png");
Content = new Image () { Source = new UriImageSource () { Uri = imageUri }, BackgroundColor = Color.Black, AutomationId = "success" };
await Task.Delay (50);
}
}
#if UITEST
[Test]
public void Bugzilla37625Test ()
{
RunningApp.WaitForElement (q => q.Marked ("success"));
}
#endif
}
}