зеркало из https://github.com/DeGsoft/maui-linux.git
19 строки
390 B
C#
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);
|
|
}
|
|
}
|
|
} |