/// <summary>
        /// Move the list one unit up or right
        /// </summary>
        public void MoveOneUnitUp()
        {
            if (_hasNoContent)
            {
                return;
            }

            _listPositionCtrl.SetUnitMove(1);
        }