HDL Home App 第二版本 旧平台金堂用 正在使用
xm
2019-07-16 b910cb79c9b5bcc204022a3cf9e6950f0a64dfbd
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
using System;
using System.Collections.Generic;
using System.Text;
 
namespace Shared.Phone.UserCenter.User
{
    /// <summary>
    /// 施工中,敬请期待
    /// </summary>
    public class NotFunctionForm : UserCenterCommonForm
    {
        /// <summary>
        /// 画面显示(底层会固定调用此方法,借以完成画面创建)
        /// </summary>
        public void ShowForm()
        {
            //设定标题
            //base.SetTitleText(Language.StringByID(R.MyInternationalizationString.uNotAddTheFunction));
 
            var msgView = new ViewNormalControl(bodyFrameLayout.Width);
            //该功能未实装
            msgView.TextID = R.MyInternationalizationString.uDuringTheConstructionPleaseLookForward;
            msgView.TextAlignment = TextAlignment.Center;
            msgView.Gravity = Gravity.Center;
            bodyFrameLayout.AddChidren(msgView);
        }
    }
}