Ejemplo n.º 1
0
 private void Annulla_Click(object sender, EventArgs e)
 {
     if (_fromCarrello)
     {
         _carrelloSessione.Show();
     }
     else
     {
         _catalogoSessione.Show();
     }
     Close();
 }
Ejemplo n.º 2
0
        private void ConfermaButton_Click(object sender, EventArgs e)
        {
            String market = (String)ListaMarketBox.SelectedItem;

            //messaggio a schermo per verifica, da cancellare
            System.Windows.Forms.MessageBox.Show(market);
            //the end verifica
            Catalogo cat = new Catalogo(_homeSpesa);
            Carrello car = new Carrello(cat);

            cat.Show();
            Close();
        }
Ejemplo n.º 3
0
 private void Catalogo_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
 {
     _catalogoSessione.Show();
     Hide();
 }