diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Assets/pencilicon.png b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Assets/pencilicon.png new file mode 100644 index 0000000000000000000000000000000000000000..5a98244f7c93a7a57a747913d3754f65fb7f926e Binary files /dev/null and b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Assets/pencilicon.png differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Assets/profileicon.png b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Assets/profileicon.png new file mode 100644 index 0000000000000000000000000000000000000000..e3ded4eeb94e4947aaa93b979650c0f10dab14a9 Binary files /dev/null and b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Assets/profileicon.png differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/InnoLabProjektDektopApp.csproj b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/InnoLabProjektDektopApp.csproj index 93e00e643048b16365c6c7074b75793ad6144bfb..02ba531747c16edd9efb0e207a23a0de94f1eca0 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/InnoLabProjektDektopApp.csproj +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/InnoLabProjektDektopApp.csproj @@ -20,7 +20,9 @@ <None Remove="Assets\icon.ico" /> <None Remove="Assets\logo.png" /> <None Remove="Assets\otherwebsitesicon.png" /> + <None Remove="Assets\pencilicon.png" /> <None Remove="Assets\pornicon.png" /> + <None Remove="Assets\profileicon.png" /> <None Remove="Assets\programsicon.png" /> <None Remove="Assets\shoppingicon.png" /> <None Remove="Assets\socialmediaicon.png" /> @@ -58,9 +60,15 @@ <Content Include="Assets\gamesicon.png"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </Content> + <Content Include="Assets\pencilicon.png"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </Content> <Content Include="Assets\pornicon.png"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </Content> + <Content Include="Assets\profileicon.png"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </Content> <Content Include="Assets\programsicon.png"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </Content> diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/01Overview.xaml b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/01Overview.xaml index 9ae799ab1400caae039b3945a23db7aee54e709d..c3a4aabcdb613ba46bb414d12b4df303c91e9600 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/01Overview.xaml +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/01Overview.xaml @@ -8,13 +8,190 @@ mc:Ignorable="d" Height="550" Width="900"> <Grid> - <header:HeaderTemplate VerticalAlignment="Top"/> - - <Button Content="Subscription" Style="{StaticResource TopMenuButon}" HorizontalAlignment="Right" Margin="0,4,180,0" VerticalAlignment="Top" Height="26" Width="80" Click="Option1_Click"/> - <Button Content="Contact" Style="{StaticResource TopMenuButon}" HorizontalAlignment="Right" Margin="0,4,100,0" VerticalAlignment="Top" Height="26" Width="80" Click="Option2_Click"/> - <Button Content="Statistics" Style="{StaticResource TopMenuButon}" HorizontalAlignment="Right" Margin="0,4,20,0" VerticalAlignment="Top" Height="26" Width="80" Click="Option3_Click"/> - - <!-- DELETE --> - <Label Content="Overview Page" HorizontalAlignment="Center" Margin="0,234,0,0" VerticalAlignment="Top" Height="108" Width="439" FontSize="48" HorizontalContentAlignment="Center" VerticalContentAlignment="Center"/> + <StackPanel Margin="20,0,20,20"> + + <!-- Überschrift --> + <TextBlock Style="{StaticResource Header1}" + Text="Selection and editing of your saved profiles" + HorizontalAlignment="Left" + Margin="0,10,0,10" /> + + <!-- Profiles and Add Button Section --> + <Border Background="#333333" CornerRadius="10" Padding="15" > + <StackPanel Orientation="Vertical"> + <TextBlock Style="{StaticResource Header2}" +Text="Want to customize this profile?" +HorizontalAlignment="Left" /> + <StackPanel Orientation="Horizontal" VerticalAlignment="Center" Background="#333333" Margin="10" HorizontalAlignment="Left"> + + + <!-- Profil 1 --> + <StackPanel Orientation="Vertical" Margin="10,0,0,0" VerticalAlignment="Center"> + <Border Width="80" Height="80" Background="LightBlue" CornerRadius="40"> + <Image Source="pack://application:,,,/Assets/profileicon.png" Stretch="Uniform" Margin="10"/> + </Border> + <TextBlock FontWeight="Bold" Text="Profile 1" Foreground="White" FontSize="14" HorizontalAlignment="Center" Margin="0,5,0,0" /> + <Button Width="20" Height="20" Background="Transparent" BorderThickness="0" Click="EditProfile_Click" HorizontalAlignment="Center" ToolTip="Edit Profile" Margin="0,-205,-80,0"> + <Image Source="pack://application:,,,/Assets/pencilicon.png" Stretch="Uniform" /> + </Button> + </StackPanel> + + <!-- Profil 2 --> + <StackPanel Orientation="Vertical" Margin="20,0,0,0" VerticalAlignment="Center"> + <Border Width="80" Height="80" Background="Gray" CornerRadius="40"> + <Image Source="pack://application:,,,/Assets/profileicon.png" Stretch="Uniform" Margin="10"/> + </Border> + <TextBlock Text="Profile 2" Foreground="White" FontSize="14" HorizontalAlignment="Center" Margin="0,5,0,0" /> + </StackPanel> + + <!-- Plus Button --> + <Border Width="50" Height="50" Background="Gray" CornerRadius="25" Margin="20,-15,0,0"> + <Button Width="50" Height="50" Background="Transparent" BorderThickness="0" Click="AddProfile_Click" HorizontalAlignment="Center" VerticalAlignment="Center"> + <TextBlock Text="+" FontSize="24" Foreground="White" VerticalAlignment="Center" HorizontalAlignment="Center" /> + </Button> + </Border> + </StackPanel> + </StackPanel> + + + + + + </Border> + + <!-- Settings Section --> + <Border Background="#333333" CornerRadius="10" Padding="15" Margin="0,20,0,0"> + <StackPanel> + <!-- Überschrift innerhalb des Hintergrunds --> + <TextBlock Style="{StaticResource Header2}" + Text="Settings for this session" + /> + + <Grid> + <Grid.ColumnDefinitions> + <ColumnDefinition Width="2*" /> + <ColumnDefinition Width="2*" /> + <ColumnDefinition Width="1*" /> + <ColumnDefinition Width="2*" /> + <ColumnDefinition Width="2*" /> + <ColumnDefinition Width="2*" /> + </Grid.ColumnDefinitions> + + <!-- Focus Period --> + <StackPanel Grid.Column="0" VerticalAlignment="Center"> + <TextBlock Text="Focus period" Foreground="White" FontSize="14" FontWeight="Bold" /> + <ComboBox Width="100" HorizontalAlignment="Left"> + <ComboBoxItem Content="20 minutes" /> + <ComboBoxItem Content="30 minutes" /> + <ComboBoxItem Content="40 minutes" /> + <ComboBoxItem Content="50 minutes" IsSelected="True" /> + <ComboBoxItem Content="60 minutes" /> + <ComboBoxItem Content="90 minutes" /> + <ComboBoxItem Content="120 minutes" /> + <ComboBoxItem Content="150 minutes" /> + <ComboBoxItem Content="180 minutes" /> + </ComboBox> + </StackPanel> + + <!-- Break Period --> + <StackPanel Grid.Column="1" VerticalAlignment="Center"> + <TextBlock Text="Break period" Foreground="White" FontSize="14" FontWeight="Bold" /> + <ComboBox Width="100" HorizontalAlignment="Left"> + <ComboBoxItem Content="0 minutes" /> + <ComboBoxItem Content="3 minutes" /> + <ComboBoxItem Content="5 minutes" /> + <ComboBoxItem Content="10 minutes" IsSelected="True" /> + <ComboBoxItem Content="15 minutes" /> + <ComboBoxItem Content="20 minutes" /> + <ComboBoxItem Content="25 minutes" /> + <ComboBoxItem Content="30 minutes" /> + </ComboBox> + </StackPanel> + + <!-- Cycles --> + <StackPanel Grid.Column="2" VerticalAlignment="Center"> + <TextBlock Text="Cycles" Foreground="White" FontSize="14" FontWeight="Bold" /> + <ComboBox Width="50" HorizontalAlignment="Left"> + <ComboBoxItem Content="1" /> + <ComboBoxItem Content="2" /> + <ComboBoxItem Content="3" /> + <ComboBoxItem Content="4" IsSelected="True" /> + <ComboBoxItem Content="5" /> + <ComboBoxItem Content="6" /> + </ComboBox> + </StackPanel> + + <!-- Distraction Mode --> + <StackPanel Grid.Column="3" VerticalAlignment="Center"> + <TextBlock Text="Distraction Mode" Foreground="White" FontSize="14" FontWeight="Bold" /> + <ComboBox Width="140" HorizontalAlignment="Left"> + <ComboBoxItem Content="Full-blocking mode" IsSelected="True" /> + <ComboBoxItem Content="Warning mode" /> + <ComboBoxItem Content="Mascot feedback only" /> + </ComboBox> + </StackPanel> + + <!-- Mascot Visibility --> + <StackPanel Grid.Column="4" VerticalAlignment="Center"> + <TextBlock Text="Mascot visible" Foreground="White" FontSize="14" FontWeight="Bold" /> + <ComboBox Width="80" HorizontalAlignment="Left"> + <ComboBoxItem Content="Yes" IsSelected="True" /> + <ComboBoxItem Content="No" /> + </ComboBox> + </StackPanel> + + <!-- Motivation Options --> + <StackPanel Grid.Column="5" VerticalAlignment="Center"> + <TextBlock Text="Motivation options" Foreground="White" FontSize="14" FontWeight="Bold" /> + <StackPanel Orientation="Horizontal" > + <CheckBox IsChecked="True" VerticalAlignment="Center"/> + <TextBlock +Style="{StaticResource StandardText}" Foreground="White" +Text="words of affirmation" Margin="10,0,0,0"/> + </StackPanel> + <StackPanel Orientation="Horizontal" > + <CheckBox IsChecked="True" VerticalAlignment="Center"/> + <TextBlock +Style="{StaticResource StandardText}" Foreground="White" +Text="insulting words" Margin="10,0,0,0"/> + </StackPanel> + </StackPanel> + </Grid> + </StackPanel> + </Border> + <TextBlock Text="Optional: What do you want to focus on during this session? (Premium)" Foreground="Gray" FontSize="14" FontWeight="Bold" Margin="0,20,0,0"/> + + + <!-- Input Field with Placeholder --> + <Grid Grid.Column="1" VerticalAlignment="Center" Margin="0,0,10,0"> + <TextBox x:Name="FocusTopicInputBox" +VerticalAlignment="Center" +Padding="5" +FontSize="14" +Background="Transparent" +Foreground="Black" +BorderBrush="Gray" +BorderThickness="1" +TextChanged="FocusTopicInputBox_TextChanged" /> + <TextBlock x:Name="FocusTopicPlaceholder" + Text="I want to focus on..." + VerticalAlignment="Center" + Foreground="Gray" + FontSize="14" + Padding="5" + IsHitTestVisible="False" + Margin="5,0,0,0" /> + </Grid> + <!-- Start Button --> + + <Border Width="150" Height="50" CornerRadius="25" Background="Gray" VerticalAlignment="Bottom" HorizontalAlignment="Left" Margin="0,10,0,0"> + <Button Background="Transparent" BorderThickness="0" Click="StartButton_Click"> + <TextBlock Text="Start" FontSize="16" FontWeight="Bold" Foreground="#1A202C" HorizontalAlignment="Center" VerticalAlignment="Center" /> + </Button> + </Border> + + + </StackPanel> + </Grid> </Window> diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/01Overview.xaml.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/01Overview.xaml.cs index ffee8263c8122c915e949f020826c220a50e2921..32b659c5e45b0e0e518c326092d739efca33641e 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/01Overview.xaml.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/01Overview.xaml.cs @@ -23,20 +23,36 @@ namespace InnoLabProjektDektopApp InitializeComponent(); GlobalSettings.setDefaults(this); } - private void Option1_Click(object sender, RoutedEventArgs e) + private void EditProfile_Click(object sender, RoutedEventArgs e) { - this.processMonitor = new ProcessMonitor(); - processMonitor.StartMonitoring(); - //this.Content = new AnotherWindow().Content; + MessageBox.Show("Edit Profile clicked!"); + // Hier kann die Logik zum Bearbeiten eines Profils eingefügt werden. } - private void Option2_Click(object sender, RoutedEventArgs e) + + private void AddProfile_Click(object sender, RoutedEventArgs e) + { + MessageBox.Show("Add Profile clicked!"); + // Hier kann die Logik zum Hinzufügen eines neuen Profils eingefügt werden. + } + + private void FocusTopicInputBox_TextChanged(object sender, TextChangedEventArgs e) { - processMonitor.StopMonitoring(); - //this.Content = new AnotherWindow().Content; + // Überprüfen, ob die TextBox leer ist + if (!string.IsNullOrEmpty(FocusTopicInputBox.Text)) + { + FocusTopicPlaceholder.Visibility = Visibility.Collapsed; // Placeholder ausblenden + } + else + { + FocusTopicPlaceholder.Visibility = Visibility.Visible; // Placeholder anzeigen + } } - private void Option3_Click(object sender, RoutedEventArgs e) + + private void StartButton_Click(object sender, RoutedEventArgs e) { - this.Content = new Statistics().Content; + // Beispiel: Nachricht anzeigen, dass der Start-Button geklickt wurde + MessageBox.Show("Focus session started!", "Start", MessageBoxButton.OK, MessageBoxImage.Information); } + } } \ No newline at end of file diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/App.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/App.g.i.cs index c2f181431d1c94dd0b0922abb25e62da1e711099..f2fe742ed156a42a03186b659f81eaa47bb1e01c 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/App.g.i.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/App.g.i.cs @@ -59,7 +59,7 @@ namespace InnoLabProjektDektopApp { #line default #line hidden - System.Uri resourceLocater = new System.Uri("/CoFlow;component/app.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/CoFlow;V1.0.0.0;component/app.xaml", System.UriKind.Relative); #line 1 "..\..\..\App.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); 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 47a13ebfee7fbcf371f4aab3a077b3d7fcd9c15d..4dc5825bd8f732086db0c7ba89bafb60e76f4dea 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("CoFlow")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+f52abc1b6a467728a09ed5fd19eeeea6b63f2bc6")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+77db9bcfdbae19c1e7f1688b0dabb07030f08c27")] [assembly: System.Reflection.AssemblyProductAttribute("CoFlow")] [assembly: System.Reflection.AssemblyTitleAttribute("CoFlow")] [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 209d12cc6d2b844c09e33d57f65e90cfd964ca43..61b63f25309b54a854a5927a6df1203416c0674a 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 @@ -e36df4fae4900861619058ff410ef9ddffac570c45108346b43c2b4436dfc336 +030ecdf128d069623efc23ba6799b8e1a47787387960d956bca23f71c4c6efef diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/01Startscreen.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/01Startscreen.g.i.cs index d3041d41cdc5c424538b4549a967c54f946e6b27..264612e847a190e18c28d7f50ed7a0c602c7f9ab 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/01Startscreen.g.i.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/01Startscreen.g.i.cs @@ -54,7 +54,7 @@ namespace InnoLabProjektDektopApp { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/CoFlow;component/screens/firstlaunch/01startscreen.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/CoFlow;V1.0.0.0;component/screens/firstlaunch/01startscreen.xaml", System.UriKind.Relative); #line 1 "..\..\..\..\..\Screens\FirstLaunch\01Startscreen.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/02Progress.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/02Progress.g.i.cs index a8f843b725137402aaf0917279b0f28ec4762daa..2916b49c74fc3cd652c2b4879a5d69c64f86d5f7 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/02Progress.g.i.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/02Progress.g.i.cs @@ -54,7 +54,7 @@ namespace InnoLabProjektDektopApp { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/CoFlow;component/screens/firstlaunch/02progress.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/CoFlow;V1.0.0.0;component/screens/firstlaunch/02progress.xaml", System.UriKind.Relative); #line 1 "..\..\..\..\..\Screens\FirstLaunch\02Progress.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/03_0Distractions.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/03_0Distractions.g.i.cs index 3201da2e809e0d89d9f9723c7b0fdbaf3ca54d65..9afe92ef51e1537b447872445c48c82e034888bd 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/03_0Distractions.g.i.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/03_0Distractions.g.i.cs @@ -1,4 +1,4 @@ -#pragma checksum "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "F8A1BBF0E5000434C5349C84B8350FAD96B5F31E" +#pragma checksum "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "AD375DC9D639CF1B001DB990B29EE5D4D495D019" //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. @@ -150,7 +150,7 @@ namespace InnoLabProjektDektopApp { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/CoFlow;component/screens/firstlaunch/03_0distractions.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/CoFlow;V1.0.0.0;component/screens/firstlaunch/03_0distractions.xaml", System.UriKind.Relative); #line 1 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); 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 45b27c8b7461210521cacfcd9b04a45828ceb1ba..c55e29bbe5f3761cf3ee50d398ffa94433ff0fd6 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}" "96BE644D81A631C6E24BB35042BB116F94BC6D3C" +#pragma checksum "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "6427519979F3F202CA8F5EEC078F8D3C47D55C21" //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. @@ -110,7 +110,7 @@ namespace InnoLabProjektDektopApp { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/CoFlow;component/screens/firstlaunch/03_1distractionslist.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/CoFlow;V1.0.0.0;component/screens/firstlaunch/03_1distractionslist.xaml", System.UriKind.Relative); #line 1 "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/04Settings.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/04Settings.g.i.cs index eda1dded832a898b94f0ad53123442ce8bb966ba..6f86134beea865dfafd75dc65fccba2d08c8fdc7 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/04Settings.g.i.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/04Settings.g.i.cs @@ -86,7 +86,7 @@ namespace InnoLabProjektDektopApp { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/CoFlow;component/screens/firstlaunch/04settings.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/CoFlow;V1.0.0.0;component/screens/firstlaunch/04settings.xaml", System.UriKind.Relative); #line 1 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/01Overview.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/01Overview.g.i.cs index f23f2ac59b9002663aad0b52de5bb2898f6291c3..17b54b7a604c2dbaf7fa38b5f97622acb84b1d20 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/01Overview.g.i.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/01Overview.g.i.cs @@ -1,4 +1,5 @@ -#pragma checksum "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "271ABB838A7FAE3EF7EFE67717EC929F277EA863" +// Updated by XamlIntelliSenseFileGenerator 01.01.2025 18:49:32 +#pragma checksum "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "271ABB838A7FAE3EF7EFE67717EC929F277EA863" //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. @@ -34,78 +35,87 @@ using System.Windows.Shapes; using System.Windows.Shell; -namespace InnoLabProjektDektopApp { - - +namespace InnoLabProjektDektopApp +{ + + /// <summary> /// Overview /// </summary> - public partial class Overview : System.Windows.Window, System.Windows.Markup.IComponentConnector { - + public partial class Overview : System.Windows.Window, System.Windows.Markup.IComponentConnector + { + private bool _contentLoaded; - + /// <summary> /// InitializeComponent /// </summary> [System.Diagnostics.DebuggerNonUserCodeAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.4.0")] - public void InitializeComponent() { - if (_contentLoaded) { + public void InitializeComponent() + { + if (_contentLoaded) + { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/CoFlow;component/screens/regulaer/01overview.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + System.Uri resourceLocater = new System.Uri("/CoFlow;V1.0.0.0;component/screens/regulaer/01overview.xaml", System.UriKind.Relative); + +#line 1 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden + +#line default +#line hidden } - + [System.Diagnostics.DebuggerNonUserCodeAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.4.0")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal System.Delegate _CreateDelegate(System.Type delegateType, string handler) { + internal System.Delegate _CreateDelegate(System.Type delegateType, string handler) + { return System.Delegate.CreateDelegate(delegateType, this, handler); } - + [System.Diagnostics.DebuggerNonUserCodeAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.4.0")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] - void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { + void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) + { switch (connectionId) { - case 1: - - #line 13 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option1_Click); - - #line default - #line hidden - return; - case 2: - - #line 14 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option2_Click); - - #line default - #line hidden - return; - case 3: - - #line 15 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option3_Click); - - #line default - #line hidden - return; + case 1: + +#line 13 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option1_Click); + +#line default +#line hidden + return; + case 2: + +#line 14 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option2_Click); + +#line default +#line hidden + return; + case 3: + +#line 15 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option3_Click); + +#line default +#line hidden + return; } this._contentLoaded = true; } + + internal System.Windows.Controls.TextBox FocusTopicInputBox; + internal System.Windows.Controls.TextBlock FocusTopicPlaceholder; } } diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/02Session.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/02Session.g.i.cs index a6a5b27ac8170d2c3417129f3e7489291b933078..26f15b4937227339db5e93f44695532aaca25d8f 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/02Session.g.i.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/02Session.g.i.cs @@ -86,7 +86,7 @@ namespace InnoLabProjektDektopApp { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/CoFlow;component/screens/regulaer/02session.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/CoFlow;V1.0.0.0;component/screens/regulaer/02session.xaml", System.UriKind.Relative); #line 1 "..\..\..\..\..\Screens\Regulaer\02Session.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/03End.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/03End.g.i.cs index 4d8e07868dced88e79d96ec12334d2c17c97bd65..bdb32dc22d3b740338e3fea242122246877c663c 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/03End.g.i.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/03End.g.i.cs @@ -54,7 +54,7 @@ namespace InnoLabProjektDektopApp { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/CoFlow;component/screens/regulaer/03end.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/CoFlow;V1.0.0.0;component/screens/regulaer/03end.xaml", System.UriKind.Relative); #line 1 "..\..\..\..\..\Screens\Regulaer\03End.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/04Statistics.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/04Statistics.g.i.cs index 434de39bc59e6a3deb2732572d3491af2d7c1bfd..7732590e5220be461ee72e15376df3c9e0c2824f 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/04Statistics.g.i.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/04Statistics.g.i.cs @@ -54,7 +54,7 @@ namespace InnoLabProjektDektopApp { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/CoFlow;component/screens/regulaer/04statistics.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/CoFlow;V1.0.0.0;component/screens/regulaer/04statistics.xaml", System.UriKind.Relative); #line 1 "..\..\..\..\..\Screens\Regulaer\04Statistics.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Templates/HeaderTemplate.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Templates/HeaderTemplate.g.i.cs index c17a4076b45bf28cc48bb05938e3c1e3af2c535b..5bd503412852677ff865a7789ac07342e24ff3b4 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Templates/HeaderTemplate.g.i.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Templates/HeaderTemplate.g.i.cs @@ -53,7 +53,7 @@ namespace InnoLabProjektDektopApp.Screens.Templates { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/CoFlow;component/screens/templates/headertemplate.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/CoFlow;V1.0.0.0;component/screens/templates/headertemplate.xaml", System.UriKind.Relative); #line 1 "..\..\..\..\..\Screens\Templates\HeaderTemplate.xaml" System.Windows.Application.LoadComponent(this, resourceLocater);