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