private void NotificationsButton_Click(object sender, RoutedEventArgs e)
        {
            NotificationsWindow window = new NotificationsWindow(_loggedInPatient);

            window.Show();
            this.Hide();
        }
Exemplo n.º 2
0
        private void NotificationButton_Click(object sender, RoutedEventArgs e)
        {
            NotificationsWindow window = new NotificationsWindow(_loggedInPatient);

            window.ShowDialog();

            RefreshTable();
        }