diff --git a/MedLaunch/MainWindow.xaml b/MedLaunch/MainWindow.xaml index 9a7b780..d8079f2 100644 --- a/MedLaunch/MainWindow.xaml +++ b/MedLaunch/MainWindow.xaml @@ -94,9 +94,7 @@ - - - + diff --git a/MedLaunch/MainWindow.xaml.cs b/MedLaunch/MainWindow.xaml.cs index ac87848..d169535 100644 --- a/MedLaunch/MainWindow.xaml.cs +++ b/MedLaunch/MainWindow.xaml.cs @@ -4426,6 +4426,19 @@ private void rbSettings_Netplay_Checked(object sender, RoutedEventArgs e) if (SettingsDirtyFlag == true) ConfigsVisualHandler.SaveSettings(SettingGroup.NetplaySettings); } + + private async void AuditScrapedData_Click(object sender, RoutedEventArgs e) + { + MainWindow mw = Application.Current.Windows.OfType().FirstOrDefault(); + await mw.ShowChildWindowAsync(new ScrapedDataAudit() + { + IsModal = true, + AllowMove = false, + Title = "Scraped Data Folder Audit", + CloseOnOverlay = false, + ShowCloseButton = false + }, RootGrid); + } } /* public class SliderIgnoreDelta : Slider diff --git a/MedLaunch/MedLaunch.csproj b/MedLaunch/MedLaunch.csproj index ce71436..3cc91e0 100644 --- a/MedLaunch/MedLaunch.csproj +++ b/MedLaunch/MedLaunch.csproj @@ -358,6 +358,9 @@ + + ScrapedDataAudit.xaml + Designer @@ -403,6 +406,10 @@ MSBuild:Compile Designer + + Designer + MSBuild:Compile + diff --git a/MedLaunch/ScrapedDataAudit.xaml b/MedLaunch/ScrapedDataAudit.xaml new file mode 100644 index 0000000..b4771fb --- /dev/null +++ b/MedLaunch/ScrapedDataAudit.xaml @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +