public bool Match(IGridItemContent entry)
        {
            if (string.IsNullOrEmpty(_filter))
            {
                return(true);
            }

            if (string.IsNullOrEmpty(entry.Name))
            {
                return(false);
            }

            return(entry.Name.ToLowerInvariant().Contains(_filter.ToLowerInvariant()));
        }
 public GridItem(int width, int height, IGridItemContent content)
 {
     _width  = width;
     _height = height;
     Content = content;
 }