private void Hover(Point location)
        {
            ShengImageListViewHitInfo hitInfo = _layoutManager.HitTest(location);

            if (hitInfo.ItemHit)
            {
                HoveredItem = Items[hitInfo.ItemIndex];
            }
            else
            {
                HoveredItem = null;
            }
        }