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);
|
}
|
}
|
}
|