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);
|
}
|
}
|
}
|