using System; using System.Collections.Generic; using System.Text; namespace Shared.Phone.UserCenter { /// /// 做成一个位于Rowlayout里面,提示拥有新版本的控件 /// public class RowNewVersionTipView : ButtonBase { /// /// 做成一个位于Rowlayout里面,提示拥有新版本的控件 /// public RowNewVersionTipView() { this.X = Application.GetRealWidth(720); this.Height = ControlCommonResourse.NormalControlHeight; this.Width = Application.GetRealWidth(200); this.TextAlignment = TextAlignment.Center; this.Gravity = Gravity.CenterVertical; this.Radius = (uint)ControlCommonResourse.NormalControlHeight / 2; this.BackgroundColor = UserCenterColor.Current.Red; this.TextColor = UserCenterColor.Current.White; this.TextID = R.MyInternationalizationString.uNEW; } } }