private void StackPanel_MouseDown(object sender, MouseButtonEventArgs e) { ExaminationShow exam = new ExaminationShow(); exam.Show(); this.Close(); }
private void ListViewItem_onClick(object sender, MouseButtonEventArgs e) { var item = sender as ListViewItem; if (item != null && item.IsSelected) { //prikazi sacuvane podatke intervention = (Intervention)item.Content; ExaminationShow examShow = new ExaminationShow(); examShow.Show(); this.Close(); } }