1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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;
        }
    }
}