Esempio n. 1
0
        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();
                }
            }
        }
Esempio n. 2
0
        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();
                }
            }
        }