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
24
25
26
27
28
29
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;
        }
    }
}