using System; using System.Collections.Generic; using System.Text; namespace Shared.Phone.UserCenter.User { /// /// 施工中,敬请期待 /// public class NotFunctionForm : UserCenterCommonForm { /// /// 画面显示(底层会固定调用此方法,借以完成画面创建) /// 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); } } }