wxr
2019-12-06 9aa32bd5ed75d54b2141b6c91f163d43216a3643
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
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;
 
        public static string VersionString = "3.01205";
 
        /// <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;
 
 
                Log("1");
                LoginUser = Newtonsoft.Json.JsonConvert.DeserializeObject<UserInfo>(System.Text.Encoding.UTF8.GetString(MyIO.FileUtils.ReadFile("Register_File")));
                Log("2");
                //判断需不需要登录,有没有登录,或者登录是否过期,
                if (LoginUser == null || !LoginUser.IsLogin)
                {
                    var fisrtView = new UI.UI1Login.LoginPage();
                    fisrtView.BackgroundColor = CSS_Color.MainBackgroundColor;
                    BaseView.AddChidren(fisrtView);
                    fisrtView.LoadView();
 
                }
                else
                {
                    //跳转页面----
                    var ss = new UI.UserPage();
                    BaseView.AddChidren(ss);
                    ss.LoadPage();
                }
            }
            catch
            {
 
            }
        }
 
        /// <summary>
        /// 自定义日志输出
        /// </summary>
        public static void Log(string msg)
        {
#if DEBUG
            Console.WriteLine(msg);
#endif
        }
    }
}