зеркало из https://github.com/DeGsoft/maui-linux.git
37 строки
753 B
C#
37 строки
753 B
C#
using Xamarin.Forms.CustomAttributes;
|
|
using Xamarin.Forms.Internals;
|
|
using Xamarin.Forms.Xaml;
|
|
using System.Collections.Generic;
|
|
|
|
#if UITEST
|
|
using Xamarin.UITest;
|
|
using Xamarin.UITest.Queries;
|
|
using NUnit.Framework;
|
|
using Xamarin.Forms.Core.UITests;
|
|
#endif
|
|
|
|
namespace Xamarin.Forms.Controls.Issues
|
|
{
|
|
#if UITEST
|
|
[NUnit.Framework.Category(UITestCategories.CollectionView)]
|
|
#endif
|
|
#if APP
|
|
[XamlCompilation(XamlCompilationOptions.Compile)]
|
|
#endif
|
|
[Preserve(AllMembers = true)]
|
|
[Issue(IssueTracker.Github, 7789, "CarouselView crash when displaying strings", PlatformAffected.iOS)]
|
|
public partial class Issue7789 : TestContentPage
|
|
{
|
|
public Issue7789()
|
|
{
|
|
#if APP
|
|
InitializeComponent();
|
|
#endif
|
|
}
|
|
|
|
protected override void Init()
|
|
{
|
|
|
|
}
|
|
}
|
|
} |