xm
2019-07-16 b910cb79c9b5bcc204022a3cf9e6950f0a64dfbd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System;
using System.Collections.Generic;
using System.Text;
 
namespace Shared.Phone.UserCenter
{
    /// <summary>
    /// 做成放在画面右边的 "空" 的图标的控件(自身无点亮功能,初始值:控件上下居中,向右停靠。注意:它是用来显示图片的)
    /// </summary>
    public class MostRightEmptyView : ButtonIconCommon
    {
        /// <summary>
        /// 做成放在画面右边的 "空" 的图标的控件(自身无点亮功能,初始值:控件上下居中,向右停靠。注意:它是用来显示图片的)
        /// </summary>
        public MostRightEmptyView()
        {
            this.Width = Application.GetMinRealAverage(110);
            this.Height = Application.GetMinRealAverage(110);
            this.Gravity = Gravity.CenterVertical;
            this.X = Application.CurrentWidth - Application.GetRealWidth(150);
        }
    }
}