/// <summary> /// Událost tlačítka pro odhlášení uživatele. /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void btnLogout_Click(object sender, RoutedEventArgs e) { if (Authentification.Logout()) { EntryWindow entryW = new EntryWindow(); entryW.Show(); Window.GetWindow(this).Close(); } }