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