diff --git a/InnoLabProjektDektopApp/.vs/InnoLabProjektDektopApp/v17/.suo b/InnoLabProjektDektopApp/.vs/InnoLabProjektDektopApp/v17/.suo index 45089bc425e03e9b00e4cb4951adf9320e0c9fbf..6dbcb37423a9724a69670dbcfe00ad63708ada22 100644 Binary files a/InnoLabProjektDektopApp/.vs/InnoLabProjektDektopApp/v17/.suo and b/InnoLabProjektDektopApp/.vs/InnoLabProjektDektopApp/v17/.suo differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Assets/distractingWebsites.json b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Assets/distractingWebsites.json index 84d66ab063521c91c2c169b0462c3dea593bf98d..ee627c78c35fadd6e41d4912456900d2e9128ae5 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Assets/distractingWebsites.json +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Assets/distractingWebsites.json @@ -1,5 +1,5 @@ { - "mass-media": [ + "Social Media": [ "youtube.com", "facebook.com", "instagram.com", @@ -94,7 +94,7 @@ "wowhead.com", "sport.de" ], - "porn":[ + "Porn":[ "pornhub.com", "xhamster.com", "xvideos.com", @@ -196,7 +196,7 @@ "theporndude.com", "hentai2read.com" ], - "games":[ + "Games":[ "twitch.tv", "discord.com", "gamestar.de", @@ -298,7 +298,7 @@ "skinport.com", "paysafecard.com" ], - "shopping":[ + "Shopping":[ "zalando.de", "hm.com", "bonprix.de", diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/InnoLabProjektDektopApp.csproj b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/InnoLabProjektDektopApp.csproj index f1f671e1935f52497b5ee866d3e53b7f1481b188..832e419a79b9c7e027b7dabf2f456ec01eddf693 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/InnoLabProjektDektopApp.csproj +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/InnoLabProjektDektopApp.csproj @@ -14,6 +14,7 @@ <ItemGroup> <None Remove="Assets\blockedProcesses.json" /> + <None Remove="Assets\distractingWebsites.json" /> <None Remove="Assets\logo.png" /> <None Remove="Screens\FirstLaunch\Mascott_InnoLab.jpg" /> </ItemGroup> @@ -43,6 +44,9 @@ <Content Include="Assets\blockedProcesses.json"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </Content> + <Content Include="Assets\distractingWebsites.json"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </Content> <Resource Include="Assets\logo.png" /> <Resource Include="Screens\FirstLaunch\Mascott_InnoLab.jpg" /> </ItemGroup> diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_0Distractions.xaml.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_0Distractions.xaml.cs index 577d7e4747847075b8da73aad5ef4eac55f276e4..bfc72cd597dee0f65f50c43593c604e331d1369b 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_0Distractions.xaml.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_0Distractions.xaml.cs @@ -45,11 +45,8 @@ namespace InnoLabProjektDektopApp if (!string.IsNullOrEmpty(category)) { - // Navigation oder Logik basierend auf der Kategorie - MessageBox.Show($"You clicked on the {category} category!"); - // Navigiere zur entsprechenden Seite (DistractionsList) - var distractionListScreen = new DistractionsList(); + var distractionListScreen = new DistractionsList(category); distractionListScreen.Show(); // Zeige neue Seite this.Close(); // Schließe aktuelle Seite } diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_1DistractionsList.xaml b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_1DistractionsList.xaml index fa64c32134df1c0bd74be66a92029398b2cac9f6..c717ec1af30531a483e61a6f5a255daa512c19ec 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_1DistractionsList.xaml +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_1DistractionsList.xaml @@ -68,9 +68,21 @@ </Button> </DockPanel> </Grid> - <TextBlock Style="{StaticResource StandardText}" Text="By clicking on a toggle, you can change the programs/websites that should be marked as distracting." /> + <!-- Überschrift --> + <StackPanel Orientation="Horizontal" VerticalAlignment="Center" Margin="0,10,0,10"> + <CheckBox x:Name="OtherProgramsCheckBox" IsChecked="True" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="0,0,5,0"/> + <TextBlock Grid.Column="0" x:Name="HeaderTextBlock" +Style="{StaticResource Header2}" +Text="CATEGORY" +HorizontalAlignment="Left" /> + </StackPanel> </StackPanel> + <ScrollViewer VerticalScrollBarVisibility="Auto" Margin="20,165,20,20"> + <StackPanel x:Name="ItemsPanel" /> + </ScrollViewer> + + </Grid> </Window> diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_1DistractionsList.xaml.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_1DistractionsList.xaml.cs index cf35405f50264e7d59bb8203f65ab4dab20717f5..32124e074372918876d803efc53a789e10cf29de 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_1DistractionsList.xaml.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_1DistractionsList.xaml.cs @@ -8,6 +8,12 @@ using System.Windows.Media; using System.Windows.Media.Imaging; using System.Windows.Navigation; using System.Windows.Shapes; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Text.Json; +using System.Windows.Controls; + namespace InnoLabProjektDektopApp { @@ -15,12 +21,67 @@ namespace InnoLabProjektDektopApp /// Interaction logic for MainWindow.xaml /// </summary> public partial class DistractionsList : Window + { - public DistractionsList() + + private string _category; + public DistractionsList(string category) { InitializeComponent(); GlobalSettings.setDefaults(this); + _category = category; + LoadCategoryItems(); } + + private void LoadCategoryItems() + { + try + { + // Pfad zur JSON-Datei + string jsonFilePath = System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Assets", "distractingWebsites.json"); + + // JSON-Inhalt lesen + string jsonContent = File.ReadAllText(jsonFilePath); + + // JSON deserialisieren + var data = JsonSerializer.Deserialize<Dictionary<string, List<string>>>(jsonContent); + + if (data != null && data.ContainsKey(_category)) + { + // Kategorie-Elemente laden + var items = data[_category]; + foreach (var item in items) + { + // Checkbox und TextBlock erstellen + var stackPanel = new StackPanel { Orientation = Orientation.Horizontal, Margin = new Thickness(5, 2, 5, 2) }; + + var checkBox = new CheckBox + { + Content = item, + Margin = new Thickness(5), + IsChecked = true + }; + + stackPanel.Children.Add(checkBox); + + // Elemente der Liste hinzufügen + ItemsPanel.Children.Add(stackPanel); + } + + // Überschrift setzen + HeaderTextBlock.Text = _category; + } + else + { + MessageBox.Show($"No items found for category '{_category}'."); + } + } + catch (Exception ex) + { + MessageBox.Show($"Error loading items: {ex.Message}"); + } + } + private void Option1_Click(object sender, RoutedEventArgs e) { //this.Content = new AnotherWindow().Content; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/bin/Debug/net8.0-windows/InnoLabProjektDektopApp.dll b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/bin/Debug/net8.0-windows/InnoLabProjektDektopApp.dll index 6432da891a7a50f150cd6922e1d612124f90e010..f057af7d688599f7c4344225ee7470287535d884 100644 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/bin/Debug/net8.0-windows/InnoLabProjektDektopApp.dll and b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/bin/Debug/net8.0-windows/InnoLabProjektDektopApp.dll differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/bin/Debug/net8.0-windows/InnoLabProjektDektopApp.exe b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/bin/Debug/net8.0-windows/InnoLabProjektDektopApp.exe index d9c6b40dfa8a7db83108c0cb32cfa0a2c5ee710d..90788aa3602d76a4b6f621e7d4278ec091212a81 100644 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/bin/Debug/net8.0-windows/InnoLabProjektDektopApp.exe and b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/bin/Debug/net8.0-windows/InnoLabProjektDektopApp.exe differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/bin/Debug/net8.0-windows/InnoLabProjektDektopApp.pdb b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/bin/Debug/net8.0-windows/InnoLabProjektDektopApp.pdb index ead139841a9d088a3739d17146c63ba1ff0aabe9..7a99776760d3ff5e19df2525e323c676d8fe2e20 100644 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/bin/Debug/net8.0-windows/InnoLabProjektDektopApp.pdb and b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/bin/Debug/net8.0-windows/InnoLabProjektDektopApp.pdb differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.AssemblyInfo.cs index 83134d0f62285b1bcecc56c89360a5d2001ea554..39f9c8c268829a1d935aacedb1b8eb91d2ee6f37 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.AssemblyInfo.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.AssemblyInfo.cs @@ -14,7 +14,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+8134dd662a34c4afc6d4e72cdf13e30885a6475f")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+44b113f6ed2cd7871cb2302478e7d4136b674802")] [assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] [assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.AssemblyInfoInputs.cache index 0376df0ade2f68fb3704738221fe8ccaa2158a61..7d0df99ef1b6abba2f041cdc79757d778040e4f8 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.AssemblyInfoInputs.cache +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.AssemblyInfoInputs.cache @@ -1 +1 @@ -e7966dc5bf7487a3f89460db91184da7d87b138ed57b5a53acafada5b268141e +5ca1d210a22a44fd435b3f8a5f1c58616f6549af41b84bebddeb7b552af44e58 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.csproj.FileListAbsolute.txt b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.csproj.FileListAbsolute.txt index 465b4aaa60bb1cbbc68dd0228573b95d7320a69b..393425ad32eb87c76baadddddee87fb8f3724781 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.csproj.FileListAbsolute.txt +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.csproj.FileListAbsolute.txt @@ -284,3 +284,4 @@ D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDekt D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.pdb D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.genruntimeconfig.cache D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\ref\InnoLabProjektDektopApp.dll +D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\distractingWebsites.json diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.dll b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.dll index 6432da891a7a50f150cd6922e1d612124f90e010..f057af7d688599f7c4344225ee7470287535d884 100644 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.dll and b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.dll differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.g.resources b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.g.resources index ec8528d456998ea5f6ab96e16787a91ce544a5ca..324fc5fafecbd065fd399600a6ada8f1cb641191 100644 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.g.resources and b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.g.resources differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.pdb b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.pdb index ead139841a9d088a3739d17146c63ba1ff0aabe9..7a99776760d3ff5e19df2525e323c676d8fe2e20 100644 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.pdb and b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.pdb differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_Content.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_Content.g.i.cs index 63e04c5c5af524286cddf451727be0407c592d9a..5fb93ad12e037f9a84a60565bce25b86a902b95c 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_Content.g.i.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_Content.g.i.cs @@ -9,5 +9,6 @@ //------------------------------------------------------------------------------ [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("assets/blockedprocesses.json")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("assets/distractingwebsites.json")] diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_MarkupCompile.i.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_MarkupCompile.i.cache index 2da397904031dda06859696126a0bad89cce0c46..8cda9d9b61b5305dd4020dd8a8b7f1b9eca425c7 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_MarkupCompile.i.cache +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_MarkupCompile.i.cache @@ -11,7 +11,7 @@ false TRACE;DEBUG;NET;NET8_0;NETCOREAPP D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\App.xaml 11-54832007 -1-409365417 +21888448807 16308522296 200287176765 Screens\FirstLaunch\01Startscreen.xaml;Screens\FirstLaunch\02Progress.xaml;Screens\FirstLaunch\03_0Distractions.xaml;Screens\FirstLaunch\03_1DistractionsList.xaml;Screens\FirstLaunch\04Settings.xaml;Screens\Regulaer\01Overview.xaml;Screens\Regulaer\02Session.xaml;Screens\Regulaer\03End.xaml;Screens\Regulaer\04Statistics.xaml;Screens\Templates\HeaderTemplate.xaml;Styles\Styles.xaml; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/03_1DistractionsList.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/03_1DistractionsList.g.i.cs index eb9a5d26542dec604aaab316eb71ff30d0f2e44b..b6cb7de9d3c0454a1a76338d67b7ad3515119244 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/03_1DistractionsList.g.i.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/03_1DistractionsList.g.i.cs @@ -1,4 +1,4 @@ -#pragma checksum "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "6A914D9F1B7EC3C2817198216CFB000CC827A3FA" +#pragma checksum "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "BD66577C7802FD103E8F45F00E6FA0A942296F45" //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. @@ -42,6 +42,30 @@ namespace InnoLabProjektDektopApp { /// </summary> public partial class DistractionsList : System.Windows.Window, System.Windows.Markup.IComponentConnector { + + #line 75 "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.CheckBox OtherProgramsCheckBox; + + #line default + #line hidden + + + #line 76 "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.TextBlock HeaderTextBlock; + + #line default + #line hidden + + + #line 83 "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.StackPanel ItemsPanel; + + #line default + #line hidden + private bool _contentLoaded; /// <summary> @@ -81,7 +105,7 @@ namespace InnoLabProjektDektopApp { { case 1: - #line 13 "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" + #line 22 "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option2_Click); #line default @@ -89,12 +113,21 @@ namespace InnoLabProjektDektopApp { return; case 2: - #line 14 "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" + #line 30 "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option3_Click); #line default #line hidden return; + case 3: + this.OtherProgramsCheckBox = ((System.Windows.Controls.CheckBox)(target)); + return; + case 4: + this.HeaderTextBlock = ((System.Windows.Controls.TextBlock)(target)); + return; + case 5: + this.ItemsPanel = ((System.Windows.Controls.StackPanel)(target)); + return; } this._contentLoaded = true; } diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/apphost.exe b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/apphost.exe index d9c6b40dfa8a7db83108c0cb32cfa0a2c5ee710d..90788aa3602d76a4b6f621e7d4278ec091212a81 100644 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/apphost.exe and b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/apphost.exe differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/ref/InnoLabProjektDektopApp.dll b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/ref/InnoLabProjektDektopApp.dll index 8dfc6bc10d6ba69d112621f495c3f59126b8c178..ec92052af8c011ed888267bb328380a387d613a6 100644 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/ref/InnoLabProjektDektopApp.dll and b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/ref/InnoLabProjektDektopApp.dll differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/refint/InnoLabProjektDektopApp.dll b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/refint/InnoLabProjektDektopApp.dll index 8dfc6bc10d6ba69d112621f495c3f59126b8c178..ec92052af8c011ed888267bb328380a387d613a6 100644 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/refint/InnoLabProjektDektopApp.dll and b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/refint/InnoLabProjektDektopApp.dll differ