wxr
2019-11-27 590a012a34db27cd1630eb70406e05d5af55e4ca
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
76
77
78
79
80
81
82
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
        }
    }
}