From 049b3408232dee07ddbeccfec0f75a6570e82131 Mon Sep 17 00:00:00 2001 From: pizzaboxer Date: Sat, 22 Jul 2023 13:18:31 +0100 Subject: [PATCH] Fix UI namespaces --- Bloxstrap/UI/Controls.cs | 4 ++-- Bloxstrap/UI/Elements/{ => Dialogs}/ExceptionDialog.xaml | 4 ++-- Bloxstrap/UI/Elements/{ => Dialogs}/ExceptionDialog.xaml.cs | 2 +- Bloxstrap/UI/Elements/{ => Dialogs}/FluentMessageBox.xaml | 4 ++-- Bloxstrap/UI/Elements/{ => Dialogs}/FluentMessageBox.xaml.cs | 2 +- Bloxstrap/UI/Elements/Menu/MainWindow.xaml | 4 ++-- Bloxstrap/UI/Elements/Menu/MainWindow.xaml.cs | 2 +- Bloxstrap/UI/Elements/Menu/Pages/AboutPage.xaml | 2 +- Bloxstrap/UI/Elements/Menu/Pages/AboutPage.xaml.cs | 2 +- Bloxstrap/UI/Elements/Menu/Pages/AppearancePage.xaml | 2 +- Bloxstrap/UI/Elements/Menu/Pages/AppearancePage.xaml.cs | 2 +- Bloxstrap/UI/Elements/Menu/Pages/BehaviourPage.xaml | 2 +- Bloxstrap/UI/Elements/Menu/Pages/BehaviourPage.xaml.cs | 2 +- Bloxstrap/UI/Elements/Menu/Pages/FastFlagsPage.xaml | 2 +- Bloxstrap/UI/Elements/Menu/Pages/FastFlagsPage.xaml.cs | 2 +- Bloxstrap/UI/Elements/Menu/Pages/InstallationPage.xaml | 2 +- Bloxstrap/UI/Elements/Menu/Pages/InstallationPage.xaml.cs | 2 +- Bloxstrap/UI/Elements/Menu/Pages/IntegrationsPage.xaml | 2 +- Bloxstrap/UI/Elements/Menu/Pages/IntegrationsPage.xaml.cs | 2 +- Bloxstrap/UI/Elements/Menu/Pages/ModsPage.xaml | 2 +- Bloxstrap/UI/Elements/Menu/Pages/ModsPage.xaml.cs | 2 +- Bloxstrap/UI/Elements/Menu/Pages/PreInstallPage.xaml | 2 +- Bloxstrap/UI/Elements/Menu/Pages/PreInstallPage.xaml.cs | 2 +- Bloxstrap/UI/ViewModels/Menu/AppearanceViewModel.cs | 2 +- Bloxstrap/UI/ViewModels/Menu/MainWindowViewModel.cs | 2 +- 25 files changed, 29 insertions(+), 29 deletions(-) rename Bloxstrap/UI/Elements/{ => Dialogs}/ExceptionDialog.xaml (95%) rename Bloxstrap/UI/Elements/{ => Dialogs}/ExceptionDialog.xaml.cs (98%) rename Bloxstrap/UI/Elements/{ => Dialogs}/FluentMessageBox.xaml (94%) rename Bloxstrap/UI/Elements/{ => Dialogs}/FluentMessageBox.xaml.cs (99%) diff --git a/Bloxstrap/UI/Controls.cs b/Bloxstrap/UI/Controls.cs index 8d7faf8..bb42bfe 100644 --- a/Bloxstrap/UI/Controls.cs +++ b/Bloxstrap/UI/Controls.cs @@ -1,8 +1,8 @@ using System.Windows; using Bloxstrap.UI.Elements.Bootstrapper; -using Bloxstrap.UI.Menu; -using Bloxstrap.UI.MessageBox; +using Bloxstrap.UI.Elements.Dialogs; +using Bloxstrap.UI.Elements.Menu; namespace Bloxstrap.UI { diff --git a/Bloxstrap/UI/Elements/ExceptionDialog.xaml b/Bloxstrap/UI/Elements/Dialogs/ExceptionDialog.xaml similarity index 95% rename from Bloxstrap/UI/Elements/ExceptionDialog.xaml rename to Bloxstrap/UI/Elements/Dialogs/ExceptionDialog.xaml index 218142e..54d8a51 100644 --- a/Bloxstrap/UI/Elements/ExceptionDialog.xaml +++ b/Bloxstrap/UI/Elements/Dialogs/ExceptionDialog.xaml @@ -1,10 +1,10 @@ - /// Interaction logic for MainWindow.xaml diff --git a/Bloxstrap/UI/Elements/Menu/Pages/AboutPage.xaml b/Bloxstrap/UI/Elements/Menu/Pages/AboutPage.xaml index 2c6de52..1c08230 100644 --- a/Bloxstrap/UI/Elements/Menu/Pages/AboutPage.xaml +++ b/Bloxstrap/UI/Elements/Menu/Pages/AboutPage.xaml @@ -1,4 +1,4 @@ - /// Interaction logic for AboutPage.xaml diff --git a/Bloxstrap/UI/Elements/Menu/Pages/AppearancePage.xaml b/Bloxstrap/UI/Elements/Menu/Pages/AppearancePage.xaml index 2afbfb5..ff7460a 100644 --- a/Bloxstrap/UI/Elements/Menu/Pages/AppearancePage.xaml +++ b/Bloxstrap/UI/Elements/Menu/Pages/AppearancePage.xaml @@ -1,4 +1,4 @@ - /// Interaction logic for AppearancePage.xaml diff --git a/Bloxstrap/UI/Elements/Menu/Pages/BehaviourPage.xaml b/Bloxstrap/UI/Elements/Menu/Pages/BehaviourPage.xaml index c18bfb8..3b27108 100644 --- a/Bloxstrap/UI/Elements/Menu/Pages/BehaviourPage.xaml +++ b/Bloxstrap/UI/Elements/Menu/Pages/BehaviourPage.xaml @@ -1,4 +1,4 @@ - /// Interaction logic for BehaviourPage.xaml diff --git a/Bloxstrap/UI/Elements/Menu/Pages/FastFlagsPage.xaml b/Bloxstrap/UI/Elements/Menu/Pages/FastFlagsPage.xaml index c60348a..26fba4e 100644 --- a/Bloxstrap/UI/Elements/Menu/Pages/FastFlagsPage.xaml +++ b/Bloxstrap/UI/Elements/Menu/Pages/FastFlagsPage.xaml @@ -1,4 +1,4 @@ - /// Interaction logic for FastFlagsPage.xaml diff --git a/Bloxstrap/UI/Elements/Menu/Pages/InstallationPage.xaml b/Bloxstrap/UI/Elements/Menu/Pages/InstallationPage.xaml index 2499773..7f28503 100644 --- a/Bloxstrap/UI/Elements/Menu/Pages/InstallationPage.xaml +++ b/Bloxstrap/UI/Elements/Menu/Pages/InstallationPage.xaml @@ -1,4 +1,4 @@ - /// Interaction logic for InstallationPage.xaml diff --git a/Bloxstrap/UI/Elements/Menu/Pages/IntegrationsPage.xaml b/Bloxstrap/UI/Elements/Menu/Pages/IntegrationsPage.xaml index 293ea57..f0bcc46 100644 --- a/Bloxstrap/UI/Elements/Menu/Pages/IntegrationsPage.xaml +++ b/Bloxstrap/UI/Elements/Menu/Pages/IntegrationsPage.xaml @@ -1,4 +1,4 @@ - /// Interaction logic for IntegrationsPage.xaml diff --git a/Bloxstrap/UI/Elements/Menu/Pages/ModsPage.xaml b/Bloxstrap/UI/Elements/Menu/Pages/ModsPage.xaml index 37f0bfd..51727ff 100644 --- a/Bloxstrap/UI/Elements/Menu/Pages/ModsPage.xaml +++ b/Bloxstrap/UI/Elements/Menu/Pages/ModsPage.xaml @@ -1,4 +1,4 @@ - /// Interaction logic for ModsPage.xaml diff --git a/Bloxstrap/UI/Elements/Menu/Pages/PreInstallPage.xaml b/Bloxstrap/UI/Elements/Menu/Pages/PreInstallPage.xaml index 6b174da..e253faa 100644 --- a/Bloxstrap/UI/Elements/Menu/Pages/PreInstallPage.xaml +++ b/Bloxstrap/UI/Elements/Menu/Pages/PreInstallPage.xaml @@ -1,4 +1,4 @@ - /// Interaction logic for PreInstallPage.xaml diff --git a/Bloxstrap/UI/ViewModels/Menu/AppearanceViewModel.cs b/Bloxstrap/UI/ViewModels/Menu/AppearanceViewModel.cs index d81edfc..cb81afa 100644 --- a/Bloxstrap/UI/ViewModels/Menu/AppearanceViewModel.cs +++ b/Bloxstrap/UI/ViewModels/Menu/AppearanceViewModel.cs @@ -7,7 +7,7 @@ using CommunityToolkit.Mvvm.Input; using Microsoft.Win32; -using Bloxstrap.UI.Menu; +using Bloxstrap.UI.Elements.Menu; namespace Bloxstrap.UI.ViewModels.Menu { diff --git a/Bloxstrap/UI/ViewModels/Menu/MainWindowViewModel.cs b/Bloxstrap/UI/ViewModels/Menu/MainWindowViewModel.cs index 9e51a3a..613240b 100644 --- a/Bloxstrap/UI/ViewModels/Menu/MainWindowViewModel.cs +++ b/Bloxstrap/UI/ViewModels/Menu/MainWindowViewModel.cs @@ -7,7 +7,7 @@ using CommunityToolkit.Mvvm.Input; using Wpf.Ui.Mvvm.Contracts; -using Bloxstrap.UI.Menu.Pages; +using Bloxstrap.UI.Elements.Menu.Pages; namespace Bloxstrap.UI.ViewModels.Menu {