diff --git a/SharepointToolbox/App.xaml.cs b/SharepointToolbox/App.xaml.cs index 28a16c3..b49c8ff 100644 --- a/SharepointToolbox/App.xaml.cs +++ b/SharepointToolbox/App.xaml.cs @@ -95,6 +95,19 @@ public partial class App : Application services.AddTransient(); services.AddTransient(); + // Phase 3: File Search + services.AddTransient(); + services.AddTransient(); + services.AddTransient(); + services.AddTransient(); + services.AddTransient(); + + // Phase 3: Duplicates + services.AddTransient(); + services.AddTransient(); + services.AddTransient(); + services.AddTransient(); + // Phase 2: Permissions services.AddTransient(); services.AddTransient(); diff --git a/SharepointToolbox/MainWindow.xaml b/SharepointToolbox/MainWindow.xaml index f9546a1..a7fe28c 100644 --- a/SharepointToolbox/MainWindow.xaml +++ b/SharepointToolbox/MainWindow.xaml @@ -47,11 +47,11 @@ - - + - - + diff --git a/SharepointToolbox/MainWindow.xaml.cs b/SharepointToolbox/MainWindow.xaml.cs index 092e2d9..630f971 100644 --- a/SharepointToolbox/MainWindow.xaml.cs +++ b/SharepointToolbox/MainWindow.xaml.cs @@ -26,6 +26,12 @@ public partial class MainWindow : Window // Replace Storage tab placeholder with the DI-resolved StorageView StorageTabItem.Content = serviceProvider.GetRequiredService(); + // Replace Search tab placeholder with the DI-resolved SearchView + SearchTabItem.Content = serviceProvider.GetRequiredService(); + + // Replace Duplicates tab placeholder with the DI-resolved DuplicatesView + DuplicatesTabItem.Content = serviceProvider.GetRequiredService(); + // Replace Settings tab placeholder with the DI-resolved SettingsView SettingsTabItem.Content = serviceProvider.GetRequiredService();