예제 #1
0
        /// <summary>
        /// Show Former Measurement Button shows ShowMeasurement Window, where the health care staff and medico technician can see former measurements
        /// Search after cpr and a list of measurements is displayed
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void ShowMeasurement_B_Click(object sender, RoutedEventArgs e)
        {
            //Hide Main Window
            this.Hide();

            //Show Data Window
            showDataWindow = new ShowDataWindow(controller, this, "");

            //Show Show Data Window
            showDataWindow.Show();
        }
 private void Results_Click(object sender, RoutedEventArgs e)
 {
     var showDataWindow = new ShowDataWindow();
 }