//=====================ETIKETE====================== private void dodajEtiketuBtn_Click(object sender, RoutedEventArgs e) { Etiketa etiketa = Podaci.getEtiketa(autoCompleteBoxTags.Text); if (etiketa != null) { bool found = false; foreach (var et in IzabraneEtikete) { if (etiketa.Id.Equals(et.Id)) { found = true; break; } } if (!found) { IzabraneEtikete.Add(etiketa); } autoCompleteBoxTags.SelectedItem = null; autoCompleteBoxTags.Text = string.Empty; } else { dodajEtiketu navaEtiketa = new dodajEtiketu(); navaEtiketa.Show(); } }