Skip to content
Snippets Groups Projects
Commit 66e59443 authored by Sandra Borst's avatar Sandra Borst
Browse files

frontend settings screen complete except for pagination

parent 86eca769
Branches
No related tags found
No related merge requests found
Showing
with 177 additions and 34 deletions
No preview for this file type
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:InnoLabProjektDektopApp" xmlns:local="clr-namespace:InnoLabProjektDektopApp"
StartupUri="Screens\Regulaer\01Overview.xaml"> StartupUri="Screens\FirstLaunch\04Settings.xaml">
<Application.Resources> <Application.Resources>
<ResourceDictionary> <ResourceDictionary>
<ResourceDictionary.MergedDictionaries> <ResourceDictionary.MergedDictionaries>
... ...
......
...@@ -7,46 +7,95 @@ ...@@ -7,46 +7,95 @@
xmlns:header="clr-namespace:InnoLabProjektDektopApp.Screens.Templates" xmlns:header="clr-namespace:InnoLabProjektDektopApp.Screens.Templates"
mc:Ignorable="d" mc:Ignorable="d"
Height="550" Width="900"> Height="550" Width="900">
<ScrollViewer VerticalScrollBarVisibility="Auto" HorizontalScrollBarVisibility="Disabled">
<Grid> <Grid>
<!-- Header -->
<header:HeaderTemplate VerticalAlignment="Top" /> <header:HeaderTemplate VerticalAlignment="Top" />
<Button Content="Subscription" Style="{StaticResource TopMenuButon}" HorizontalAlignment="Right" Margin="0,4,100,0" VerticalAlignment="Top" Height="26" Width="80" Click="Option2_Click"/> <Button Content="Subscription" Style="{StaticResource TopMenuButon}" HorizontalAlignment="Right" Margin="0,4,100,0" VerticalAlignment="Top" Height="26" Width="80" Click="Option2_Click"/>
<Button Content="Contract" Style="{StaticResource TopMenuButon}" HorizontalAlignment="Right" Margin="0,4,20,0" VerticalAlignment="Top" Height="26" Width="80" Click="Option3_Click"/> <Button Content="Contract" Style="{StaticResource TopMenuButon}" HorizontalAlignment="Right" Margin="0,4,20,0" VerticalAlignment="Top" Height="26" Width="80" Click="Option3_Click"/>
<!-- Hauptinhalt -->
<StackPanel Margin="20,70,20,20"> <StackPanel Margin="20,70,20,20">
<!-- StackPanel für vertikale Anordnung -->
<!-- Überschrift 1 -->
<TextBlock Style="{StaticResource Header1}" <TextBlock Style="{StaticResource Header1}"
Text="Change the settings as you want" Text="Change the settings as you want"
HorizontalAlignment="Left" /> HorizontalAlignment="Left" />
<StackPanel Orientation="Horizontal" VerticalAlignment="Center" Margin="0,10,0,0">
<!-- Frage 1 -->
<TextBlock Style="{StaticResource Header2}" <TextBlock Style="{StaticResource Header2}"
Text="What should happen when you try to open a distracting program/page?" Text="What should happen when you try to open a distracting program/page?"
HorizontalAlignment="Left" /> HorizontalAlignment="Left" />
<RadioButton Content="full-blocking mode" GroupName="Modes" /> <TextBlock Text="ⓘ"
FontSize="14"
FontWeight="Bold"
Foreground="Gray"
Margin="5,0,0,0"
VerticalAlignment="Center"
ToolTip="You can choose between 3 modes: In all modes, the mascot gives you visual feedback that you are currently distracting yourself. In full-blocking mode, the distracting item you try to reach is instantly automatically closed. In the warning mode, you receive a warning for X seconds during which you can re-decide if you want to enter the distracting item or not." />
</StackPanel>
<RadioButton Content="full-blocking mode" GroupName="Modes" IsChecked="True"/>
<RadioButton Content="X seconds warning mode" GroupName="Modes" /> <RadioButton Content="X seconds warning mode" GroupName="Modes" />
<RadioButton Content="only mascot feedback mode" GroupName="Modes" /> <RadioButton Content="only mascot feedback mode" GroupName="Modes" />
<!-- Frage 2 --> <StackPanel Orientation="Horizontal" VerticalAlignment="Center" Margin="0,10,0,0">
<TextBlock Style="{StaticResource Header2}"
Text="Do you want the mascot to be visible while working?"
HorizontalAlignment="Left" />
<TextBlock Text="ⓘ"
FontSize="14"
FontWeight="Bold"
Foreground="Gray"
Margin="5,0,0,0"
VerticalAlignment="Center"
ToolTip="If the mascot is visible while you work, its emotions reflect how focused you are which can be motivating. Deselect the mascot if you find it annoying." />
</StackPanel>
<RadioButton Content="yes" GroupName="MascotVisibility" IsChecked="True"/>
<RadioButton Content="no" GroupName="MascotVisibility" />
<StackPanel Orientation="Horizontal" VerticalAlignment="Center" Margin="0,10,0,0">
<TextBlock Style="{StaticResource Header2}" <TextBlock Style="{StaticResource Header2}"
Text="Do you want to receive words of affirmation during your focused work?" Text="Do you want to receive words of affirmation during your focused work?"
HorizontalAlignment="Left" /> HorizontalAlignment="Left" />
<RadioButton Content="yes" GroupName="Modes" /> <TextBlock Text="ⓘ"
<RadioButton Content="no" GroupName="Modes" /> FontSize="14"
FontWeight="Bold"
Foreground="Gray"
Margin="5,0,0,0"
VerticalAlignment="Center"
ToolTip="If selected and you work focusedly, the mascot is going to tell you stuff like 'You have not distracted yourself for 30 minutes! I am proud of you!'" />
</StackPanel>
<RadioButton Content="yes" GroupName="Affirmation" IsChecked="True"/>
<RadioButton Content="no" GroupName="Affirmation" />
<!-- Frage 3 --> <StackPanel Orientation="Horizontal" VerticalAlignment="Center" Margin="0,10,0,0">
<TextBlock Style="{StaticResource Header2}" <TextBlock Style="{StaticResource Header2}"
Text="Do you want to be the mascot visible while working?" Text="Do you want to receive insulting words when distracted?"
HorizontalAlignment="Left" /> HorizontalAlignment="Left" />
<RadioButton Content="yes" GroupName="Modes" /> <TextBlock Text="ⓘ"
<RadioButton Content="no" GroupName="Modes" /> FontSize="14"
FontWeight="Bold"
Foreground="Gray"
Margin="5,0,0,0"
VerticalAlignment="Center"
ToolTip="If selected and you distract yourself during the focus mdde, the mascot is going to tell you stuff like 'I have already finished 10 exercises - why are you not working focused like me?'" />
</StackPanel>
<RadioButton Content="yes" GroupName="InsultingWords" IsChecked="True"/>
<RadioButton Content="no" GroupName="InsultingWords" />
<!-- Frage 4 --> <!-- Frage 4 -->
<StackPanel Orientation="Horizontal" VerticalAlignment="Center" Margin="0,10,0,0">
<TextBlock Style="{StaticResource Header2}" <TextBlock Style="{StaticResource Header2}"
Text="What should your default focus session look like?" Text="What should your default focus session look like?"
HorizontalAlignment="Left" /> HorizontalAlignment="Left" />
<TextBlock Text="ⓘ"
FontSize="14"
FontWeight="Bold"
Foreground="Gray"
Margin="5,0,0,0"
VerticalAlignment="Center"
ToolTip="You can decide how long the focus and break period should be. The focus period is the period in which you want to work focused without taking a break. The break period determines how long the break after each focus period should be. With cycles you can decide how often you want to cycle through focus and break periods. For example, a cylcle of 2, a focus period of 50 and a break period of 10 means that your total focus session looks like this: 50 minutes focused work, 10 minutes break, 50 minutes focused work and 10 minutes break." />
</StackPanel>
<!-- Graue Box --> <!-- Graue Box -->
<Border Background="LightGray" CornerRadius="10" Padding="3" Margin="5" BorderBrush="#D3D3D3" BorderThickness="1"> <Border Background="LightGray" CornerRadius="10" Padding="3" Margin="5" BorderBrush="#D3D3D3" BorderThickness="1">
...@@ -60,34 +109,51 @@ ...@@ -60,34 +109,51 @@
<!-- Focus Period --> <!-- Focus Period -->
<StackPanel Grid.Column="0" Margin="10"> <StackPanel Grid.Column="0" Margin="10">
<TextBlock Text="Focus period" FontSize="14" FontWeight="SemiBold" Foreground="Gray" /> <TextBlock Text="Focus period" FontSize="14" FontWeight="SemiBold" Foreground="Gray" />
<ComboBox HorizontalAlignment="Left" Height="30" Width="150" FontSize="14" Padding="5"> <ComboBox HorizontalAlignment="Left" Height="30" Width="150" FontSize="14" Padding="5" SelectionChanged="ComboBox_SelectionChanged" IsEditable="True">
<ComboBoxItem Content="20 minutes" />
<ComboBoxItem Content="30 minutes" />
<ComboBoxItem Content="40 minutes" />
<ComboBoxItem Content="50 minutes" IsSelected="True" /> <ComboBoxItem Content="50 minutes" IsSelected="True" />
<ComboBoxItem Content="25 minutes" />
<ComboBoxItem Content="60 minutes" /> <ComboBoxItem Content="60 minutes" />
<ComboBoxItem Content="90 minutes" />
<ComboBoxItem Content="120 minutes" />
<ComboBoxItem Content="150 minutes" />
<ComboBoxItem Content="180 minutes" />
</ComboBox> </ComboBox>
</StackPanel> </StackPanel>
<!-- Break Period --> <!-- Break Period -->
<StackPanel Grid.Column="1" Margin="10"> <StackPanel Grid.Column="1" Margin="10">
<TextBlock Text="Break period" FontSize="14" FontWeight="SemiBold" Foreground="Gray" /> <TextBlock Text="Break period" FontSize="14" FontWeight="SemiBold" Foreground="Gray" />
<ComboBox HorizontalAlignment="Left" Height="30" Width="150" FontSize="14" Padding="5"> <ComboBox HorizontalAlignment="Left" Height="30" Width="150" FontSize="14" Padding="5" IsEditable="True">
<ComboBoxItem Content="10 minutes" IsSelected="True" /> <ComboBoxItem Content="0 minutes" />
<ComboBoxItem Content="3 minutes" />
<ComboBoxItem Content="5 minutes" /> <ComboBoxItem Content="5 minutes" />
<ComboBoxItem Content="10 minutes" IsSelected="True" />
<ComboBoxItem Content="15 minutes" /> <ComboBoxItem Content="15 minutes" />
<ComboBoxItem Content="20 minutes" />
<ComboBoxItem Content="25 minutes" />
<ComboBoxItem Content="30 minutes" />
</ComboBox> </ComboBox>
</StackPanel> </StackPanel>
<!-- Cycles --> <!-- Cycles -->
<StackPanel Grid.Column="2" Margin="10"> <StackPanel Grid.Column="2" Margin="10">
<TextBlock Text="Cycles" FontSize="14" FontWeight="SemiBold" Foreground="Gray" /> <TextBlock Text="Cycles" FontSize="14" FontWeight="SemiBold" Foreground="Gray" />
<ComboBox HorizontalAlignment="Left" Height="30" Width="150" FontSize="14" Padding="5"> <ComboBox HorizontalAlignment="Left" Height="30" Width="150" FontSize="14" Padding="5" IsEditable="True">
<ComboBoxItem Content="4" IsSelected="True" /> <ComboBoxItem Content="1" />
<ComboBoxItem Content="2" /> <ComboBoxItem Content="2" />
<ComboBoxItem Content="3" />
<ComboBoxItem Content="4" IsSelected="True" />
<ComboBoxItem Content="5" />
<ComboBoxItem Content="6" /> <ComboBoxItem Content="6" />
</ComboBox> </ComboBox>
</StackPanel> </StackPanel>
</Grid> </Grid>
</Border> </Border>
</StackPanel> </StackPanel>
</Grid> </Grid>
</ScrollViewer>
</Window> </Window>
\ No newline at end of file
...@@ -43,5 +43,10 @@ namespace InnoLabProjektDektopApp ...@@ -43,5 +43,10 @@ namespace InnoLabProjektDektopApp
{ {
} }
private void ComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
}
} }
} }
\ No newline at end of file
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Style TargetType="ToolTip">
<Setter Property="Background" Value="LightYellow" />
<Setter Property="Foreground" Value="Black" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="ToolTip">
<Border Background="{TemplateBinding Background}"
BorderBrush="Gray"
BorderThickness="1"
Padding="5">
<TextBlock Text="{TemplateBinding Content}"
TextWrapping="Wrap"
MaxWidth="300" />
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style TargetType="TextBlock">
<Setter Property="ToolTipService.InitialShowDelay" Value="0" />
</Style>
<Style TargetType="TextBlock" x:Key="Header1"> <Style TargetType="TextBlock" x:Key="Header1">
<Setter Property="FontSize" Value="24"/> <Setter Property="FontSize" Value="24"/>
<Setter Property="FontWeight" Value="Bold"/> <Setter Property="FontWeight" Value="Bold"/>
...@@ -14,6 +38,7 @@ ...@@ -14,6 +38,7 @@
<Setter Property="FontWeight" Value="SemiBold"/> <Setter Property="FontWeight" Value="SemiBold"/>
<Setter Property="Foreground" Value="DarkGray"/> <Setter Property="Foreground" Value="DarkGray"/>
<Setter Property="TextWrapping" Value="Wrap"/> <Setter Property="TextWrapping" Value="Wrap"/>
<Setter Property="ToolTipService.InitialShowDelay" Value="0"/>
</Style> </Style>
<!-- Style für Standardtext --> <!-- Style für Standardtext -->
... ...
......
No preview for this file type
No preview for this file type
No preview for this file type
...@@ -12,8 +12,7 @@ ...@@ -12,8 +12,7 @@
} }
], ],
"configProperties": { "configProperties": {
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true, "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true
"CSWINRT_USE_WINDOWS_UI_XAML_PROJECTIONS": false
} }
} }
} }
\ No newline at end of file
#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "0A1B60D7CD93D3C1273996782FA59B3F1310A4BA" #pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "2DEDC9624A7085F1363F3F7BDB3110EA433383A8"
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// <auto-generated> // <auto-generated>
// This code was generated by a tool. // This code was generated by a tool.
...@@ -55,11 +55,11 @@ namespace InnoLabProjektDektopApp { ...@@ -55,11 +55,11 @@ namespace InnoLabProjektDektopApp {
_contentLoaded = true; _contentLoaded = true;
#line 5 "..\..\..\App.xaml" #line 5 "..\..\..\App.xaml"
this.StartupUri = new System.Uri("Screens\\Regulaer\\01Overview.xaml", System.UriKind.Relative); this.StartupUri = new System.Uri("Screens\\FirstLaunch\\04Settings.xaml", System.UriKind.Relative);
#line default #line default
#line hidden #line hidden
System.Uri resourceLocater = new System.Uri("/InnoLabProjektDektopApp;V1.0.0.0;component/app.xaml", System.UriKind.Relative); System.Uri resourceLocater = new System.Uri("/InnoLabProjektDektopApp;component/app.xaml", System.UriKind.Relative);
#line 1 "..\..\..\App.xaml" #line 1 "..\..\..\App.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater); System.Windows.Application.LoadComponent(this, resourceLocater);
... ...
......
...@@ -15,7 +15,7 @@ namespace XamlGeneratedNamespace { ...@@ -15,7 +15,7 @@ namespace XamlGeneratedNamespace {
/// GeneratedInternalTypeHelper /// GeneratedInternalTypeHelper
/// </summary> /// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()] [System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.4.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
public sealed class GeneratedInternalTypeHelper : System.Windows.Markup.InternalTypeHelper { public sealed class GeneratedInternalTypeHelper : System.Windows.Markup.InternalTypeHelper {
... ...
......
...@@ -14,7 +14,7 @@ using System.Reflection; ...@@ -14,7 +14,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] [assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+caf448b512bed6bc8d63f623d6bdc2b731406f1b")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+86eca7696b524bd262803ac3c3d606a20ac48a00")]
[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] [assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")]
[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] [assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
... ...
......
a71ca28c95f1c784c0c4e85dcf468662b420de3d81a3404c0a1b71899fd7edd4 9c06ef33bb4cbc9c1838367faad4937a5fa83c13d3aad39650d61c6ce774d63f
9af08545ab1b8741cee3e7cdb921df1eef56c5b94fbccc10f8b4a6addb260a1b 0dcf3cfa38cc27dabad4b4fbe2a710a74fad4ca623e92fb2809db8c75b97c3d4
...@@ -186,3 +186,52 @@ F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLa ...@@ -186,3 +186,52 @@ F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLa
F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabP.75C040FC.Up2Date F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabP.75C040FC.Up2Date
F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.genruntimeconfig.cache F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.genruntimeconfig.cache
F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\ref\InnoLabProjektDektopApp.dll F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\ref\InnoLabProjektDektopApp.dll
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\blockedProcesses.json
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.exe
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.deps.json
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.runtimeconfig.json
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.dll
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.pdb
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Newtonsoft.Json.dll
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\System.CodeDom.dll
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\System.Management.dll
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\runtimes\win\lib\net8.0\System.Management.dll
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.csproj.AssemblyReference.cache
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Styles\Styles.baml
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\01Startscreen.g.cs
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\02Progress.g.cs
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_0Distractions.g.cs
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_1DistractionsList.g.cs
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\04Settings.g.cs
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\01Overview.g.cs
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\02Session.g.cs
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\03End.g.cs
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\04Statistics.g.cs
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Templates\HeaderTemplate.g.cs
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\App.g.cs
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp_Content.g.cs
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\GeneratedInternalTypeHelper.g.cs
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp_MarkupCompile.cache
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp_MarkupCompile.lref
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\App.baml
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\01Startscreen.baml
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\02Progress.baml
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_0Distractions.baml
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_1DistractionsList.baml
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\04Settings.baml
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\01Overview.baml
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\02Session.baml
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\03End.baml
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\04Statistics.baml
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Templates\HeaderTemplate.baml
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.g.resources
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.GeneratedMSBuildEditorConfig.editorconfig
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.AssemblyInfoInputs.cache
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.AssemblyInfo.cs
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.csproj.CoreCompileInputs.cache
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabP.75C040FC.Up2Date
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.dll
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\refint\InnoLabProjektDektopApp.dll
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.pdb
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.genruntimeconfig.cache
C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\ref\InnoLabProjektDektopApp.dll
No preview for this file type
8b30959f60e78cb2491c4b4353099be658cf355f614bfbe934c1b7b007cb1ff6 a136fdcaa4c3596e62be9e81266bee5f0a24873914d2b954e7215fcb7e16a6d0
No preview for this file type
...@@ -54,8 +54,7 @@ namespace InnoLabProjektDektopApp { ...@@ -54,8 +54,7 @@ namespace InnoLabProjektDektopApp {
return; return;
} }
_contentLoaded = true; _contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/InnoLabProjektDektopApp;V1.0.0.0;component/screens/firstlaunch/01startscreen.xam" + System.Uri resourceLocater = new System.Uri("/InnoLabProjektDektopApp;component/screens/firstlaunch/01startscreen.xaml", System.UriKind.Relative);
"l", System.UriKind.Relative);
#line 1 "..\..\..\..\..\Screens\FirstLaunch\01Startscreen.xaml" #line 1 "..\..\..\..\..\Screens\FirstLaunch\01Startscreen.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater); System.Windows.Application.LoadComponent(this, resourceLocater);
... ...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment