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

Merge branch 'focussessionscreenfeature' into 'develop'

start focus session screen implemented basic frontend with all elements

See merge request !20
parents 77db9bcf 126b7c1a
No related branches found
No related tags found
1 merge request!20start focus session screen implemented basic frontend with all elements
Showing
with 285 additions and 74 deletions
InnoLabProjektDektopApp/InnoLabProjektDektopApp/Assets/pencilicon.png

297 B

InnoLabProjektDektopApp/InnoLabProjektDektopApp/Assets/profileicon.png

915 B

...@@ -20,7 +20,9 @@ ...@@ -20,7 +20,9 @@
<None Remove="Assets\icon.ico" /> <None Remove="Assets\icon.ico" />
<None Remove="Assets\logo.png" /> <None Remove="Assets\logo.png" />
<None Remove="Assets\otherwebsitesicon.png" /> <None Remove="Assets\otherwebsitesicon.png" />
<None Remove="Assets\pencilicon.png" />
<None Remove="Assets\pornicon.png" /> <None Remove="Assets\pornicon.png" />
<None Remove="Assets\profileicon.png" />
<None Remove="Assets\programsicon.png" /> <None Remove="Assets\programsicon.png" />
<None Remove="Assets\shoppingicon.png" /> <None Remove="Assets\shoppingicon.png" />
<None Remove="Assets\socialmediaicon.png" /> <None Remove="Assets\socialmediaicon.png" />
...@@ -58,9 +60,15 @@ ...@@ -58,9 +60,15 @@
<Content Include="Assets\gamesicon.png"> <Content Include="Assets\gamesicon.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content> </Content>
<Content Include="Assets\pencilicon.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Assets\pornicon.png"> <Content Include="Assets\pornicon.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content> </Content>
<Content Include="Assets\profileicon.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Assets\programsicon.png"> <Content Include="Assets\programsicon.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content> </Content>
......
...@@ -8,13 +8,190 @@ ...@@ -8,13 +8,190 @@
mc:Ignorable="d" mc:Ignorable="d"
Height="550" Width="900"> Height="550" Width="900">
<Grid> <Grid>
<header:HeaderTemplate VerticalAlignment="Top"/> <StackPanel Margin="20,0,20,20">
<Button Content="Subscription" Style="{StaticResource TopMenuButon}" HorizontalAlignment="Right" Margin="0,4,180,0" VerticalAlignment="Top" Height="26" Width="80" Click="Option1_Click"/> <!-- Überschrift -->
<Button Content="Contact" Style="{StaticResource TopMenuButon}" HorizontalAlignment="Right" Margin="0,4,100,0" VerticalAlignment="Top" Height="26" Width="80" Click="Option2_Click"/> <TextBlock Style="{StaticResource Header1}"
<Button Content="Statistics" Style="{StaticResource TopMenuButon}" HorizontalAlignment="Right" Margin="0,4,20,0" VerticalAlignment="Top" Height="26" Width="80" Click="Option3_Click"/> Text="Selection and editing of your saved profiles"
HorizontalAlignment="Left"
<!-- DELETE --> Margin="0,10,0,10" />
<Label Content="Overview Page" HorizontalAlignment="Center" Margin="0,234,0,0" VerticalAlignment="Top" Height="108" Width="439" FontSize="48" HorizontalContentAlignment="Center" VerticalContentAlignment="Center"/>
<!-- 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> </Grid>
</Window> </Window>
...@@ -23,20 +23,36 @@ namespace InnoLabProjektDektopApp ...@@ -23,20 +23,36 @@ namespace InnoLabProjektDektopApp
InitializeComponent(); InitializeComponent();
GlobalSettings.setDefaults(this); GlobalSettings.setDefaults(this);
} }
private void Option1_Click(object sender, RoutedEventArgs e) private void EditProfile_Click(object sender, RoutedEventArgs e)
{ {
this.processMonitor = new ProcessMonitor(); MessageBox.Show("Edit Profile clicked!");
processMonitor.StartMonitoring(); // Hier kann die Logik zum Bearbeiten eines Profils eingefügt werden.
//this.Content = new AnotherWindow().Content;
} }
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(); // Überprüfen, ob die TextBox leer ist
//this.Content = new AnotherWindow().Content; 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
...@@ -59,7 +59,7 @@ namespace InnoLabProjektDektopApp { ...@@ -59,7 +59,7 @@ namespace InnoLabProjektDektopApp {
#line default #line default
#line hidden #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" #line 1 "..\..\..\App.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater); System.Windows.Application.LoadComponent(this, resourceLocater);
......
...@@ -14,7 +14,7 @@ using System.Reflection; ...@@ -14,7 +14,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("CoFlow")] [assembly: System.Reflection.AssemblyCompanyAttribute("CoFlow")]
[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+f52abc1b6a467728a09ed5fd19eeeea6b63f2bc6")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+77db9bcfdbae19c1e7f1688b0dabb07030f08c27")]
[assembly: System.Reflection.AssemblyProductAttribute("CoFlow")] [assembly: System.Reflection.AssemblyProductAttribute("CoFlow")]
[assembly: System.Reflection.AssemblyTitleAttribute("CoFlow")] [assembly: System.Reflection.AssemblyTitleAttribute("CoFlow")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
......
e36df4fae4900861619058ff410ef9ddffac570c45108346b43c2b4436dfc336 030ecdf128d069623efc23ba6799b8e1a47787387960d956bca23f71c4c6efef
...@@ -54,7 +54,7 @@ namespace InnoLabProjektDektopApp { ...@@ -54,7 +54,7 @@ namespace InnoLabProjektDektopApp {
return; return;
} }
_contentLoaded = true; _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" #line 1 "..\..\..\..\..\Screens\FirstLaunch\01Startscreen.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater); System.Windows.Application.LoadComponent(this, resourceLocater);
......
...@@ -54,7 +54,7 @@ namespace InnoLabProjektDektopApp { ...@@ -54,7 +54,7 @@ namespace InnoLabProjektDektopApp {
return; return;
} }
_contentLoaded = true; _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" #line 1 "..\..\..\..\..\Screens\FirstLaunch\02Progress.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater); System.Windows.Application.LoadComponent(this, resourceLocater);
......
#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> // <auto-generated>
// This code was generated by a tool. // This code was generated by a tool.
...@@ -150,7 +150,7 @@ namespace InnoLabProjektDektopApp { ...@@ -150,7 +150,7 @@ namespace InnoLabProjektDektopApp {
return; return;
} }
_contentLoaded = true; _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" #line 1 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater); System.Windows.Application.LoadComponent(this, resourceLocater);
......
#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> // <auto-generated>
// This code was generated by a tool. // This code was generated by a tool.
...@@ -110,7 +110,7 @@ namespace InnoLabProjektDektopApp { ...@@ -110,7 +110,7 @@ namespace InnoLabProjektDektopApp {
return; return;
} }
_contentLoaded = true; _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" #line 1 "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater); System.Windows.Application.LoadComponent(this, resourceLocater);
......
...@@ -86,7 +86,7 @@ namespace InnoLabProjektDektopApp { ...@@ -86,7 +86,7 @@ namespace InnoLabProjektDektopApp {
return; return;
} }
_contentLoaded = true; _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" #line 1 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater); System.Windows.Application.LoadComponent(this, resourceLocater);
......
#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> // <auto-generated>
// This code was generated by a tool. // This code was generated by a tool.
...@@ -34,78 +35,87 @@ using System.Windows.Shapes; ...@@ -34,78 +35,87 @@ using System.Windows.Shapes;
using System.Windows.Shell; using System.Windows.Shell;
namespace InnoLabProjektDektopApp { namespace InnoLabProjektDektopApp
{
/// <summary> /// <summary>
/// Overview /// Overview
/// </summary> /// </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; private bool _contentLoaded;
/// <summary> /// <summary>
/// InitializeComponent /// InitializeComponent
/// </summary> /// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()] [System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.4.0")] [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.4.0")]
public void InitializeComponent() { public void InitializeComponent()
if (_contentLoaded) { {
if (_contentLoaded)
{
return; return;
} }
_contentLoaded = true; _contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/CoFlow;component/screens/regulaer/01overview.xaml", System.UriKind.Relative); 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" #line 1 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater); System.Windows.Application.LoadComponent(this, resourceLocater);
#line default #line default
#line hidden #line hidden
} }
[System.Diagnostics.DebuggerNonUserCodeAttribute()] [System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.4.0")] [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.4.0")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] [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); return System.Delegate.CreateDelegate(delegateType, this, handler);
} }
[System.Diagnostics.DebuggerNonUserCodeAttribute()] [System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.4.0")] [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.4.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] [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) switch (connectionId)
{ {
case 1: case 1:
#line 13 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" #line 13 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option1_Click); ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option1_Click);
#line default #line default
#line hidden #line hidden
return; return;
case 2: case 2:
#line 14 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" #line 14 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option2_Click); ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option2_Click);
#line default #line default
#line hidden #line hidden
return; return;
case 3: case 3:
#line 15 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" #line 15 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option3_Click); ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option3_Click);
#line default #line default
#line hidden #line hidden
return; return;
} }
this._contentLoaded = true; this._contentLoaded = true;
} }
internal System.Windows.Controls.TextBox FocusTopicInputBox;
internal System.Windows.Controls.TextBlock FocusTopicPlaceholder;
} }
} }
...@@ -86,7 +86,7 @@ namespace InnoLabProjektDektopApp { ...@@ -86,7 +86,7 @@ namespace InnoLabProjektDektopApp {
return; return;
} }
_contentLoaded = true; _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" #line 1 "..\..\..\..\..\Screens\Regulaer\02Session.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater); System.Windows.Application.LoadComponent(this, resourceLocater);
......
...@@ -54,7 +54,7 @@ namespace InnoLabProjektDektopApp { ...@@ -54,7 +54,7 @@ namespace InnoLabProjektDektopApp {
return; return;
} }
_contentLoaded = true; _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" #line 1 "..\..\..\..\..\Screens\Regulaer\03End.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater); System.Windows.Application.LoadComponent(this, resourceLocater);
......
...@@ -54,7 +54,7 @@ namespace InnoLabProjektDektopApp { ...@@ -54,7 +54,7 @@ namespace InnoLabProjektDektopApp {
return; return;
} }
_contentLoaded = true; _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" #line 1 "..\..\..\..\..\Screens\Regulaer\04Statistics.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater); System.Windows.Application.LoadComponent(this, resourceLocater);
......
...@@ -53,7 +53,7 @@ namespace InnoLabProjektDektopApp.Screens.Templates { ...@@ -53,7 +53,7 @@ namespace InnoLabProjektDektopApp.Screens.Templates {
return; return;
} }
_contentLoaded = true; _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" #line 1 "..\..\..\..\..\Screens\Templates\HeaderTemplate.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.
Finish editing this message first!
Please register or to comment