using System;
using System.Collections.Generic;
using System.Text;
namespace Shared.Phone.UserCenter
{
///
/// 做成一个存在于TopFrameLayout最右边的 "空" 图标(自身拥有点亮功能.20190618:追加文字点亮功能,与图片不共存)
///
public class TopLayoutMostRightView : ButtonIconCommon
{
///
/// 做成一个存在于TopFrameLayout最右边的 "空" 图标(自身拥有点亮功能.20190618:追加文字点亮功能,与图片不共存)
///
public TopLayoutMostRightView()
{
this.Height = Application.GetMinRealAverage(110);
this.Width = Application.GetMinRealAverage(110);
this.X = Application.GetRealWidth(925);
this.Gravity = Gravity.CenterVertical;
//启用点亮功能
this.UseClickStatu = true;
}
}
}