Beispiel #1
0
        private void backClick(object sender, MouseButtonEventArgs e)
        {
            //Show examination options
            Examine examine = new Examine();

            examine.Show();
            this.Close();
        }
Beispiel #2
0
        private void PackIcon_MouseDown(object sender, MouseButtonEventArgs e)
        {
            // Show examination options
            Examine examine = new Examine();

            examine.Show();
            this.Close();
        }
Beispiel #3
0
        private void backClick(object sender, RoutedEventArgs e)
        {
            int    patientId   = Appointments.interv.PatientId;
            String description = descript.Text;

            intervId = interventionController.AddDescription(patientId, description);
            //Show examination options
            Examine examine = new Examine();

            examine.Show();
            this.Close();
        }
Beispiel #4
0
        private void ListViewItem_onClick(object sender, MouseButtonEventArgs e)
        {
            var item = sender as ListViewItem;

            if (item != null && item.IsSelected)
            {
                interv = (Intervention)item.Content;


                Examine examine = new Examine();
                examine.Show();
                this.Close();
            }
        }