diff --git a/Gerayis/Pages/SettingsPage.xaml b/Gerayis/Pages/SettingsPage.xaml index 2986984..3cb37dc 100644 --- a/Gerayis/Pages/SettingsPage.xaml +++ b/Gerayis/Pages/SettingsPage.xaml @@ -309,7 +309,13 @@ - + + diff --git a/Gerayis/Pages/SettingsPage.xaml.cs b/Gerayis/Pages/SettingsPage.xaml.cs index 38c4984..0c32ba0 100644 --- a/Gerayis/Pages/SettingsPage.xaml.cs +++ b/Gerayis/Pages/SettingsPage.xaml.cs @@ -645,4 +645,13 @@ private void QrCodePageBorder_MouseLeftButtonUp(object sender, MouseButtonEventA Global.Settings.StartupPage = AppPages.QRCode; // Set SettingsManager.Save(); // Save changes } + + private void CreditsBtn_Click(object sender, RoutedEventArgs e) + { + MessageBox.Show($"{Properties.Resources.CreditsAndThanks}\n\n" + + $"@dependabot\n" + + $"@Leo-Peyronnet\n" + + $"@wcxu21", + Properties.Resources.CreditsAndThanks, MessageBoxButton.OK, MessageBoxImage.Information); + } }