wxr
2019-11-25 29a6e6d747d13fc285c8dd86649417f60613388f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
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
        }
    }
}