private void LstCategorieen_SelectionChanged(object sender, SelectionChangedEventArgs e) { if (lstCategorieen.SelectedIndex >= 0) { ListBoxItem itm = (ListBoxItem)lstCategorieen.SelectedItem; int cat_id = int.Parse(itm.Tag.ToString()); txtcategorie.Text = Categorie.ZoekCategorie(cat_id); } }