예제 #1
0
        private void StackPanel_MouseDown(object sender, MouseButtonEventArgs e)
        {
            ExaminationShow exam = new ExaminationShow();

            exam.Show();
            this.Close();
        }
예제 #2
0
        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();
            }
        }