using System;
|
using System.Collections.Generic;
|
using HDL_ON.UI.CSS;
|
using Shared;
|
|
namespace HDL_ON
|
{
|
public static class MainPage
|
{
|
public static FrameLayout BaseView { get; internal set; }
|
|
public static bool DisplayCompleted = false;
|
|
public static UserInfo LoginUser;
|
|
public static List<string> LocationFiles;
|
|
/// <summary>
|
/// 公司代码
|
/// 预留第三方定制标记
|
/// 0:HDL
|
/// </summary>
|
public static int Company = 0;
|
|
|
public static void Show()
|
{
|
try
|
{
|
Application.DesignWidth = 375;
|
Application.DesignHeight = 667;
|
|
//BusSocket.Start(6000);
|
//CommonPage.InitHttpListener();
|
|
BaseView = Application.MainPage;
|
Application.MainPage.BackgroundColor = CSS_Color.MainBackgroundColor;
|
|
|
#if DEBUG
|
MainPage.LoginUser = new UserInfo
|
{
|
ID = 0,
|
AccountType = 0,
|
AccountString = "zxn@hdlchina.com.cn",
|
Password = "",
|
UserName = "小七小七",
|
LastTime = DateTime.Now,
|
};
|
|
var ss = new UI.UserPage();
|
MainPage.BaseView.AddChidren(ss);
|
ss.ChoosePersonalCenter();
|
|
//var personalCenterPage = new UI2.PersonalCenterPage();
|
//MainPage.BaseView.AddChidren(personalCenterPage);
|
//personalCenterPage.LoadView();
|
#else
|
var fisrtView = new UI1Login.LoginPage();
|
fisrtView.BackgroundColor = CSS_Color.MainBackgroundColor;
|
BaseView.AddChidren(fisrtView);
|
fisrtView.LoadView();
|
#endif
|
|
}
|
catch
|
{
|
|
}
|
}
|
|
/// <summary>
|
/// 自定义日志输出
|
/// </summary>
|
public static void Log(string msg)
|
{
|
#if DEBUG
|
Console.WriteLine(msg);
|
#endif
|
}
|
}
|
}
|