public MainWindow()
 {
     InitializeComponent();
     UxTipoComboBox.ItemsSource = Enum.GetValues(typeof(TipoVoto)).Cast<TipoVoto>();
     UxMediaComboBox.ItemsSource = Enum.GetValues(typeof(Materia)).Cast<Materia>();
     UxMateriaComboBox.ItemsSource = Enum.GetValues(typeof(Materia)).Cast<Materia>();
     Voti = new Voti();
     UxDatiListView.ItemsSource = null;
     UxDatiListView.ItemsSource = ReadCSV();
 }
 private void VisualizzaVoti(Voti voti)
 {
 }