using System; using System.Collections.Generic; using System.Text; namespace Shared.Phone.UserCenter { /// /// 做成一个存在于TopFrameLayout最右边的【完成】控件 /// public class TopLayoutFinshView : ButtonIconCommon { /// /// 做成一个存在于TopFrameLayout最右边的【完成】控件 /// public TopLayoutFinshView() { this.Height = Application.GetMinRealAverage(110); this.Width = Application.GetMinRealAverage(110); this.X = Application.GetRealWidth(925); this.Gravity = Gravity.CenterVertical; this.TextID = R.MyInternationalizationString.uFinish; //this.UnSelectedImagePath = "Item/Tick.png"; //this.SelectedImagePath = "Item/TickSelected.png"; //启用点亮功能 this.UseClickStatu = true; } } }