using System;
|
using System.Collections.Generic;
|
using System.Text;
|
|
namespace Shared.Phone.UserCenter
|
{
|
/// <summary>
|
/// 做成一个存在于TopFrameLayout最右边的【完成】控件
|
/// </summary>
|
public class TopLayoutFinshView : ButtonIconCommon
|
{
|
/// <summary>
|
/// 做成一个存在于TopFrameLayout最右边的【完成】控件
|
/// </summary>
|
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;
|
}
|
}
|
}
|