gxc
2019-11-15 7b60238359b94125d591678eff105ae2bf47843f
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(58);
            Height = Application.GetMinRealAverage(58);
            Width = Application.GetMinRealAverage(58);
            UnSelectedImagePath = "Account/Back.png";
            SelectedImagePath = "Account/BackSelected.png";
            Gravity = Gravity.CenterVertical;
        }
 
    }
}