void ReleaseDesignerOutlets()
        {
            if (AddToBasketBtn != null)
            {
                AddToBasketBtn.Dispose();
                AddToBasketBtn = null;
            }

            if (CellQty != null)
            {
                CellQty.Dispose();
                CellQty = null;
            }

            if (CellLabel != null)
            {
                CellLabel.Dispose();
                CellLabel = null;
            }
        }