internal void ShowPrevious() { // Shows the previous item in a pad that implements ILocationListPad. if (activeLocationList != null) { NavigationPoint next = activeLocationList.GetPreviousLocation(); if (next != null) { next.Show(); } } }
internal void ShowNext() { // Shows the next item in a pad that implements ILocationListPad. if (activeLocationList != null) { NavigationPoint next = activeLocationList.GetNextLocation(); if (next != null) { next.Show(); } } }