黄学彪
2019-11-18 16604a593202f2f87adf71abd57d036fe7da3b52
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
using Shared.Common;
namespace Shared.Phone.Device.CommonForm
{
    /// <summary>
    /// Back button.
    /// </summary>
    public class BackButton:Button
    {
        /// <summary>
        /// Initializes a new instance of the <see cref="T:Shared.Phone.Device.CommonForm.BackButton"/> class.
        /// </summary>
        public BackButton()
        {
            X = Application.GetRealWidth(28);
            Height = Application.GetMinRealAverage(110);
            Width = Application.GetMinRealAverage(110);
            UnSelectedImagePath = "Account/Back.png";
            SelectedImagePath = "Account/BackSelected.png";
            Gravity = Gravity.CenterVertical;
        }
 
    }
}