using System; using System.Collections.Generic; using System.Text; namespace Shared.Phone.UserCenter { /// /// 做成放在画面右边的 "空" 的图标的控件(自身无点亮功能,初始值:控件上下居中,向右停靠。注意:它是用来显示图片的) /// public class MostRightEmptyView : ButtonIconCommon { /// /// 做成放在画面右边的 "空" 的图标的控件(自身无点亮功能,初始值:控件上下居中,向右停靠。注意:它是用来显示图片的) /// public MostRightEmptyView() { this.Width = Application.GetMinRealAverage(110); this.Height = Application.GetMinRealAverage(110); this.Gravity = Gravity.CenterVertical; this.X = Application.CurrentWidth - Application.GetRealWidth(150); } } }