using System;
|
using System.Collections.Generic;
|
using System.Net;
|
using System.Text;
|
using HDL_ON.DAL;
|
using HDL_ON.UI.CSS;
|
using Shared;
|
|
namespace HDL_ON.UI
|
{
|
public static class MainPage
|
{
|
public static FrameLayout BaseView { get; internal set; }
|
|
//public static PageLayout MainPageView { 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;
|
|
//MainPageView = new PageLayout() {
|
// IsShowPoint = false,
|
//};
|
//BaseView.AddChidren(MainPageView);
|
|
var loginBaseView = new UI1Login.LoginBaseView();
|
BaseView.AddChidren(loginBaseView);
|
var fisrtView = new UI1Login.LoginPage();
|
|
fisrtView.BackgroundColor = CSS_Color.MainBackgroundColor;
|
loginBaseView.AddChidren(fisrtView);
|
fisrtView.LoadView();
|
|
//HDL_ON
|
}
|
catch
|
{
|
|
}
|
}
|
|
/// <summary>
|
/// 自定义日志输出
|
/// </summary>
|
public static void Log(string msg)
|
{
|
#if DEBUG
|
Console.WriteLine(msg);
|
#endif
|
}
|
}
|
}
|