private void basketBox_SelectedIndexChanged(object sender, EventArgs e) { Basket.RemoveItem(basketBox, basketTotalPriceBox); }
public FormGraphicCard() { InitializeComponent(); ActiveControl = label1; Basket.StartForm(basketBox, basketTotalPriceBox); }
private void clearButton_Click(object sender, EventArgs e) { Basket.ClearBasket(basketBox, basketTotalPriceBox); }
public Form1() { InitializeComponent(); ActiveControl = label1; Basket.StartForm(basketBox, basketTotalPriceBox, label3); }