private void BtnShifts_Click(object sender, RoutedEventArgs e)
        {
            Shifts shiftsWindow = new Shifts();

            shiftsWindow.Show();
            this.Close();
        }
Example #2
0
        private void BtnShifts_Click(object sender, RoutedEventArgs e)
        {
            Shifts shifts_screen = new Shifts();

            shifts_screen.ShowDialog();
        }