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

26 строки
754 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using Xamarin.Forms.CustomAttributes;
using Xamarin.Forms.Internals;
namespace Xamarin.Forms.Controls.Issues
{
[Preserve (AllMembers = true)]
[Issue (IssueTracker.Bugzilla, 29158, "XF for WP8.1RT - BeginInvokeOnMainThread generates NullReferenceException", (PlatformAffected)(1<<3))]
public class Bugzilla29158
: ContentPage
{
protected override void OnAppearing()
{
base.OnAppearing();
System.Threading.Tasks.Task.Run (async () =>
{
await System.Threading.Tasks.Task.Delay (1000);
Device.BeginInvokeOnMainThread (() => DisplayAlert("Time's up", "", "OK"));
});
}
}
}