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
using System;
using HDL_ON.UI;
using Shared;
 
namespace HDL_ON.UI2
{
    public class PersonalDataPage : FrameLayout
    {
        #region 控件列表
        /// <summary>
        /// 当前
        /// </summary>
        FrameLayout bodyView;
        /// <summary>
        /// 头像区域
        /// </summary>
        FrameLayout headPortraitView;
        #endregion
 
        public PersonalDataPage()
        {
            bodyView = this;
        }
 
        public void LoadView()
        {
            new PublicAssmebly().LoadTopView(bodyView, Language.StringByID(InternationalizationString.PersonalCenter));
 
            headPortraitView = new FrameLayout()
            {
                Y = Application.GetRealHeight(64),
                Height = Application.GetRealHeight(124)
            };
 
        }
 
 
    }
}