//אירוע הקורה כשלוחצים על כפתור הסרת פריט מסל הקניות
        void BtnRemove_Click(object sender, EventArgs e)
        {
            Button btn = sender as Button;
            ShoppingCartControl control = btn.Parent as ShoppingCartControl;

            if (control != null)
            {
                ItemControl itemControl = control.Item;
                DataTable   colorsTable;
                if (btn != null && control != null)
                {
                    int colorCode = control.ColorCode;
                    int sizeCode  = control.SizeCode;
                    //בדיקת מלאי הפריט ועדכון הפקדים בהתאם
                    itemControl.increaseTotalAmount(colorCode, sizeCode);
                    colorsTable                         = itemControl.getItemColors();
                    itemControl.Enabled                 = true;
                    itemControl.LblNoStock.Visible      = false;
                    itemControl.CmbColors.DataSource    = colorsTable;
                    itemControl.CmbColors.ValueMember   = "colorCode";
                    itemControl.CmbColors.DisplayMember = "colorName";
                    itemControl.CmbColors.SelectedValue = -1;
                    itemControl.CmbColors.Text          = "-בחר צבע-";
                    itemControl.CmbSizes.Enabled        = false;
                    itemControl.CmbSizes.DataSource     = null;
                    itemControl.CmbSizes.Text           = "";
                    itemControl.BtnAddToCart.Enabled    = false;
                    //עדכון תווית המחיר
                    int currentPrice = int.Parse(lblSumPrice.Text);
                    int priceToAdd   = int.Parse(control.LblItemPrice.Text);
                    currentPrice    -= priceToAdd;
                    lblSumPrice.Text = currentPrice.ToString();
                    //הסרת הפריט מסל הקניות
                    shoppingCartListItemsCount--;
                    control.copyItem(shoppingCartListItems[shoppingCartListItemsCount]);
                    pnlShoppingCart.Controls.Remove(shoppingCartListItems[shoppingCartListItemsCount]);
                    shoppingCartListItems.Remove(shoppingCartListItems[shoppingCartListItemsCount]);
                    YLocationInShoppingCartPanel -= 25;
                }
            }
        }