maui-linux/Xamarin.Forms.Controls/RootPages/RootContentPage.cs

19 строки
390 B
C#

using System;
using System.Collections;
using System.Collections.ObjectModel;
using System.Diagnostics;
using System.Linq;
using System.Threading.Tasks;
namespace Xamarin.Forms.Controls
{
public class RootContentPage : ContentPage
{
public RootContentPage (string hierarchy)
{
AutomationId = hierarchy + "PageId";
Content = new SwapHierachyStackLayout (hierarchy);
}
}
}