using System; using Shared.Common; namespace Shared.Phone.Device.CommonForm { /// /// Back button. /// public class BackButton:Button { /// /// Initializes a new instance of the class. /// public BackButton() { X = Application.GetRealWidth(58); Height = Application.GetMinRealAverage(58); Width = Application.GetMinRealAverage(58); UnSelectedImagePath = "Item/Back.png"; SelectedImagePath = "Item/BackSelected.png"; Gravity = Gravity.CenterVertical; } } }