using Shared.SimpleControl.Phone;
|
using System;
|
|
namespace Shared.SimpleControl.Pad
|
{
|
/// <summary>
|
/// 后面界面主页面
|
/// </summary>
|
public static class SystemHomePage
|
{
|
/// <summary>
|
/// 后面主界面的主视图
|
/// </summary>
|
public static readonly FrameLayout FrameLayoutMain = new FrameLayout () {
|
BackgroundColor = 0xFF000000
|
};
|
|
/// <summary>
|
/// 初始化当前视图
|
/// </summary>
|
public static void Init ()
|
{
|
if (null != FrameLayoutMain.Parent) {
|
return;
|
}
|
MainPage.MainFrameLayout.AddChidren (FrameLayoutMain);
|
SystemTop.Init ();
|
SystemMiddleTop.Init ();
|
SystemMiddle.Init ();
|
}
|
}
|
}
|