using System;
using System.Collections.Generic;
using System.Text;
namespace Shared.Phone.UserCenter.Account
{
///
/// 施工中,敬请期待
///
public class NotFunctionForm : EditorCommonForm
{
///
/// 画面显示(底层会固定调用此方法,借以完成画面创建)
///
public void ShowForm()
{
//设定标题
//base.SetTitleText(Language.StringByID(R.MyInternationalizationString.uNotAddTheFunction));
var msgView = new NormalViewControl(bodyFrameLayout.Width, false);
//该功能未实装
msgView.TextID = R.MyInternationalizationString.uDuringTheConstructionPleaseLookForward;
msgView.TextAlignment = TextAlignment.Center;
msgView.Gravity = Gravity.Center;
bodyFrameLayout.AddChidren(msgView);
}
}
}