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