Compare commits

..

2 Commits

Author SHA1 Message Date
2b6ee05a67 Fix ComboBox "Stato" non allineato correttamente 2026-01-29 09:38:40 +01:00
e8782f17c2 Aggiunto aggiornamento combobox stato 2026-01-29 09:32:53 +01:00

View File

@@ -209,7 +209,7 @@ namespace PizzaExpress_Client
pnlButtons.Controls.Add(_btnAggiorna);
pnlButtons.Controls.Add(_btnElimina);
pnlRight.Controls.Add(pnlButtons, 1, 6);
pnlRight.Controls.Add(pnlButtons, 1, 7);
// ======================================================
Controls.Add(pnlRight);
@@ -268,6 +268,7 @@ namespace PizzaExpress_Client
_txtPrezzo.Text = p.Prezzo.ToString();
_cmbCategoria.Text = p.Categoria;
_txtNote.Text = p.Note;
_cmbStato.Text = p.Stato;
}
// ======================================================================