using System;
|
using System.Collections.Generic;
|
using System.Text;
|
|
namespace Shared.Phone.UserCenter
|
{
|
/// <summary>
|
/// 做成一个位于Rowlayout里面,提示拥有新版本的控件
|
/// </summary>
|
public class RowNewVersionTipView : ButtonBase
|
{
|
/// <summary>
|
/// 做成一个位于Rowlayout里面,提示拥有新版本的控件
|
/// </summary>
|
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;
|
}
|
}
|
}
|