зеркало из https://github.com/DeGsoft/maui-linux.git
49 строки
926 B
C#
49 строки
926 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
using Xamarin.Forms;
|
|
using Xamarin.Forms.CustomAttributes;
|
|
using Xamarin.Forms.Internals;
|
|
using Xamarin.Forms.Xaml;
|
|
|
|
#if UITEST
|
|
using Xamarin.Forms.Core.UITests;
|
|
using Xamarin.UITest;
|
|
using NUnit.Framework;
|
|
#endif
|
|
|
|
|
|
namespace Xamarin.Forms.Controls.Issues
|
|
{
|
|
[Preserve(AllMembers = true)]
|
|
[Issue(IssueTracker.Bugzilla, 39636, "Cannot use XamlC with OnPlatform in resources, it throws System.InvalidCastException", PlatformAffected.All)]
|
|
#if APP
|
|
[XamlCompilation(XamlCompilationOptions.Compile)]
|
|
#endif
|
|
public partial class Bugzilla39636 : TestContentPage
|
|
{
|
|
public Bugzilla39636 ()
|
|
{
|
|
#if APP
|
|
InitializeComponent ();
|
|
#endif
|
|
}
|
|
|
|
protected override void Init()
|
|
{
|
|
|
|
}
|
|
|
|
#if UITEST
|
|
[Test]
|
|
public void DoesNotCrash()
|
|
{
|
|
RunningApp.WaitForElement(q => q.Text("Success"));
|
|
}
|
|
#endif
|
|
}
|
|
}
|