Skip to content
Snippets Groups Projects
Commit b2a05b4e authored by Marcel Kehrberg's avatar Marcel Kehrberg
Browse files

Pagination

parent d5ee2ad7
No related branches found
No related tags found
1 merge request!30Progress screen
Showing
with 210 additions and 121 deletions
No preview for this file type
No preview for this file type
...@@ -37,30 +37,25 @@ ...@@ -37,30 +37,25 @@
<TextBlock HorizontalAlignment="Left" Height="68" Margin="695,366,0,0" TextWrapping="Wrap" Text="Aliquam erat volutpat. Integer malesuada turpis id fringilla suscipit. Maecenas ultrices, orci vitae convallis mattis." VerticalAlignment="Top" Width="125"/> <TextBlock HorizontalAlignment="Left" Height="68" Margin="695,366,0,0" TextWrapping="Wrap" Text="Aliquam erat volutpat. Integer malesuada turpis id fringilla suscipit. Maecenas ultrices, orci vitae convallis mattis." VerticalAlignment="Top" Width="125"/>
<!-- Pagination --> <!-- Pagination -->
<StackPanel Orientation="Horizontal" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="272,478,0,0" Width="320"> <StackPanel Orientation="Horizontal" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="272,478,0,0" Width="240">
<Button Content="Previous" Width="70" Margin="5" Click="PreviousPage_Click" /> <Button Content="Previous" Width="70" Margin="5" Click="PreviousPage_Click" />
<StackPanel Orientation="Horizontal">
<Ellipse Width="15" Height="15" Fill="Black" Margin="5"/>
<!-- Aktive Seite -->
<Ellipse Width="15" Height="15" Fill="Gray" Margin="5"/>
<!-- Inaktive Seite -->
<Ellipse Width="15" Height="15" Fill="Gray" Margin="5"/>
<Ellipse Width="15" Height="15" Fill="Gray" Margin="5"/>
</StackPanel>
<!-- <!--
<ItemsControl ItemsSource="{Binding PageNumbers}"> <Button Content="1" Width="20" Margin="5" Click="first_Page" />
<ItemsControl.ItemTemplate>
<DataTemplate>
<Button Content="{Binding}" Width="30" Margin="2"
Command="{Binding DataContext.PageCommand, RelativeSource={RelativeSource AncestorType=ItemsControl}}"
CommandParameter="{Binding}" />
</DataTemplate>
</ItemsControl.ItemTemplate>
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal" />
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
</ItemsControl>
-->
<!--<Button Content="1" Width="20" Margin="5" Click="first_Page" />
<Button Content="2" Width="20" Margin="5" Click="Second_Page" /> <Button Content="2" Width="20" Margin="5" Click="Second_Page" />
<Button Content="3" Width="20" Margin="5" Click="third_Page" /> <Button Content="3" Width="20" Margin="5" Click="third_Page" />
<Button Content="4" Width="20" Margin="5" Click="fourth_Page" /> <Button Content="4" Width="20" Margin="5" Click="fourth_Page" />
<Button Content="5" Width="20" Margin="5" Click="fifth_Page" /> <Button Content="5" Width="20" Margin="5" Click="fifth_Page" />
--> -->
<Button Content="Next" Width="70" Margin="5" Click="NextPage_Click" /> <Button Content="Next" Width="70" Margin="5" Click="NextPage_Click" />
</StackPanel> </StackPanel>
<Image HorizontalAlignment="Left" Height="57" Margin="81,269,0,0" VerticalAlignment="Top" Width="54" Source="/Screens/FirstLaunch/filter.png"/> <Image HorizontalAlignment="Left" Height="57" Margin="81,269,0,0" VerticalAlignment="Top" Width="54" Source="/Screens/FirstLaunch/filter.png"/>
... ...
......
...@@ -50,12 +50,12 @@ namespace InnoLabProjektDektopApp ...@@ -50,12 +50,12 @@ namespace InnoLabProjektDektopApp
private void PreviousPage_Click(object sender, RoutedEventArgs e) private void PreviousPage_Click(object sender, RoutedEventArgs e)
{ {
//this.Content = new AnotherWindow().Content; this.Content = new TestScreen().Content;
} }
private void NextPage_Click(object sender, RoutedEventArgs e) private void NextPage_Click(object sender, RoutedEventArgs e)
{ {
//this.Content = new AnotherWindow().Content; this.Content = new Distractions().Content;
} }
} }
} }
\ No newline at end of file
...@@ -166,7 +166,11 @@ ...@@ -166,7 +166,11 @@
<Border Background="#E6F7FF" CornerRadius="10" Padding="10" Margin="0,10,0,0"> <Border Background="#E6F7FF" CornerRadius="10" Padding="10" Margin="0,10,0,0">
<Grid> <Grid>
<UniformGrid Columns="3" VerticalAlignment="Top" HorizontalAlignment="Stretch" Margin="0,10,0,0"> <Grid.RowDefinitions>
<RowDefinition Height="223*"/>
<RowDefinition Height="118*"/>
</Grid.RowDefinitions>
<UniformGrid Columns="3" VerticalAlignment="Top" HorizontalAlignment="Stretch" Margin="0,10,0,0" Grid.RowSpan="2">
<!-- Kategorie: Social Media --> <!-- Kategorie: Social Media -->
<StackPanel Margin="10"> <StackPanel Margin="10">
...@@ -269,6 +273,28 @@ ...@@ -269,6 +273,28 @@
</Border> </Border>
</StackPanel> </StackPanel>
<!-- Pagination -->
<StackPanel Orientation="Horizontal" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="272,478,0,0" Width="240">
<Button Content="Previous" Width="70" Margin="5" Click="PreviousPage_Click" />
<StackPanel Orientation="Horizontal">
<Ellipse Width="15" Height="15" Fill="Black" Margin="5"/>
<!-- Aktive Seite -->
<Ellipse Width="15" Height="15" Fill="Black" Margin="5"/>
<!-- Inaktive Seite -->
<Ellipse Width="15" Height="15" Fill="Gray" Margin="5"/>
</StackPanel>
<!--
<Button Content="1" Width="20" Margin="5" Click="first_Page" />
<Button Content="2" Width="20" Margin="5" Click="Second_Page" />
<Button Content="3" Width="20" Margin="5" Click="third_Page" />
<Button Content="4" Width="20" Margin="5" Click="fourth_Page" />
<Button Content="5" Width="20" Margin="5" Click="fifth_Page" />
-->
<Button Content="Next" Width="70" Margin="5" Click="NextPage_Click" />
</StackPanel>
</Grid> </Grid>
</Window> </Window>
... ...
......
...@@ -254,6 +254,15 @@ namespace InnoLabProjektDektopApp ...@@ -254,6 +254,15 @@ namespace InnoLabProjektDektopApp
} }
} }
private void PreviousPage_Click(object sender, RoutedEventArgs e)
{
this.Content = new Progress().Content;
}
private void NextPage_Click(object sender, RoutedEventArgs e)
{
this.Content = new Settings().Content;
}
} }
} }
...@@ -174,7 +174,28 @@ ToolTip="You can decide how long the focus and break period should be. The focus ...@@ -174,7 +174,28 @@ ToolTip="You can decide how long the focus and break period should be. The focus
</StackPanel> </StackPanel>
<!-- Pagination -->
<StackPanel Orientation="Horizontal" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="272,478,0,0" Width="240">
<Button Content="Previous" Width="70" Margin="5" Click="PreviousPage_Click" />
<StackPanel Orientation="Horizontal">
<Ellipse Width="15" Height="15" Fill="Black" Margin="5"/>
<!-- Aktive Seite -->
<Ellipse Width="15" Height="15" Fill="Black" Margin="5"/>
<!-- Inaktive Seite -->
<Ellipse Width="15" Height="15" Fill="Black" Margin="5"/>
<Ellipse Width="15" Height="15" Fill="Gray" Margin="5"/>
</StackPanel>
<!--
<Button Content="1" Width="20" Margin="5" Click="first_Page" />
<Button Content="2" Width="20" Margin="5" Click="Second_Page" />
<Button Content="3" Width="20" Margin="5" Click="third_Page" />
<Button Content="4" Width="20" Margin="5" Click="fourth_Page" />
<Button Content="5" Width="20" Margin="5" Click="fifth_Page" />
-->
<Button Content="Next" Width="70" Margin="5" Click="NextPage_Click" />
</StackPanel>
</Grid> </Grid>
</ScrollViewer> </ScrollViewer>
... ...
......
...@@ -133,7 +133,15 @@ private void SaveSettingsButton_Click(object sender, RoutedEventArgs e) ...@@ -133,7 +133,15 @@ private void SaveSettingsButton_Click(object sender, RoutedEventArgs e)
this.Close(); this.Close();
} }
private void PreviousPage_Click(object sender, RoutedEventArgs e)
{
this.Content = new Distractions().Content;
}
private void NextPage_Click(object sender, RoutedEventArgs e)
{
this.Content = new Overview().Content;
}
... ...
......
...@@ -192,6 +192,27 @@ TextChanged="FocusTopicInputBox_TextChanged" /> ...@@ -192,6 +192,27 @@ TextChanged="FocusTopicInputBox_TextChanged" />
</StackPanel> </StackPanel>
<!-- Pagination -->
<StackPanel Orientation="Horizontal" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="272,478,0,0" Width="240">
<Button Content="Previous" Width="70" Margin="5" Click="PreviousPage_Click" />
<StackPanel Orientation="Horizontal">
<Ellipse Width="15" Height="15" Fill="Black" Margin="5"/>
<!-- Aktive Seite -->
<Ellipse Width="15" Height="15" Fill="Black" Margin="5"/>
<!-- Inaktive Seite -->
<Ellipse Width="15" Height="15" Fill="Black" Margin="5"/>
<Ellipse Width="15" Height="15" Fill="Black" Margin="5"/>
</StackPanel>
<!--
<Button Content="1" Width="20" Margin="5" Click="first_Page" />
<Button Content="2" Width="20" Margin="5" Click="Second_Page" />
<Button Content="3" Width="20" Margin="5" Click="third_Page" />
<Button Content="4" Width="20" Margin="5" Click="fourth_Page" />
<Button Content="5" Width="20" Margin="5" Click="fifth_Page" />
-->
<!-- <Button Content="Next" Width="70" Margin="5" Click="NextPage_Click" /> -->
</StackPanel>
</Grid> </Grid>
</Window> </Window>
...@@ -177,5 +177,10 @@ namespace InnoLabProjektDektopApp ...@@ -177,5 +177,10 @@ namespace InnoLabProjektDektopApp
this.Close(); this.Close();
} }
private void PreviousPage_Click(object sender, RoutedEventArgs e)
{
this.Content = new Settings().Content;
}
} }
} }
//------------------------------------------------------------------------------ 
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
namespace XamlGeneratedNamespace {
/// <summary>
/// GeneratedInternalTypeHelper
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
public sealed class GeneratedInternalTypeHelper : System.Windows.Markup.InternalTypeHelper {
/// <summary>
/// CreateInstance
/// </summary>
protected override object CreateInstance(System.Type type, System.Globalization.CultureInfo culture) {
return System.Activator.CreateInstance(type, ((System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.NonPublic)
| (System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.CreateInstance)), null, null, culture);
}
/// <summary>
/// GetPropertyValue
/// </summary>
protected override object GetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, System.Globalization.CultureInfo culture) {
return propertyInfo.GetValue(target, System.Reflection.BindingFlags.Default, null, null, culture);
}
/// <summary>
/// SetPropertyValue
/// </summary>
protected override void SetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, object value, System.Globalization.CultureInfo culture) {
propertyInfo.SetValue(target, value, System.Reflection.BindingFlags.Default, null, null, culture);
}
/// <summary>
/// CreateDelegate
/// </summary>
protected override System.Delegate CreateDelegate(System.Type delegateType, object target, string handler) {
return ((System.Delegate)(target.GetType().InvokeMember("_CreateDelegate", (System.Reflection.BindingFlags.InvokeMethod
| (System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)), null, target, new object[] {
delegateType,
handler}, null)));
}
/// <summary>
/// AddEventHandler
/// </summary>
protected override void AddEventHandler(System.Reflection.EventInfo eventInfo, object target, System.Delegate handler) {
eventInfo.AddEventHandler(target, handler);
}
}
}
...@@ -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+c9b946b3346a901f02ac1a59efe2d304d269d6df")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+d5ee2ad7acb2d88e4bf95cc726c84dbacb692e2c")]
[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")]
... ...
......
b7d380ae506091cf46ecb3e50bb6cc8fd2d969c30cb9e882f33b68be45a03700 a1bd50c945dac7cd2d85f2e4bfc246f9902e5e1b223a12c151ae7ad659b579b9
#pragma checksum "..\..\..\..\..\Screens\FirstLaunch\02Progress.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "BB4805AC618B081A652B52B63D3E507AF62AFC3C" #pragma checksum "..\..\..\..\..\Screens\FirstLaunch\02Progress.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "061D8B91CA44272A3A53DCC02340C9836CA90638"
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// <auto-generated> // <auto-generated>
// Dieser Code wurde von einem Tool generiert. // Dieser Code wurde von einem Tool generiert.
...@@ -82,7 +82,7 @@ namespace InnoLabProjektDektopApp { ...@@ -82,7 +82,7 @@ namespace InnoLabProjektDektopApp {
return; return;
case 2: case 2:
#line 64 "..\..\..\..\..\Screens\FirstLaunch\02Progress.xaml" #line 59 "..\..\..\..\..\Screens\FirstLaunch\02Progress.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NextPage_Click); ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NextPage_Click);
#line default #line default
... ...
......
#pragma checksum "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "AD375DC9D639CF1B001DB990B29EE5D4D495D019" #pragma checksum "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "06D04F593A1351DCB1C2B6161A055476FEB1C67E"
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// <auto-generated> // <auto-generated>
// Dieser Code wurde von einem Tool generiert. // Dieser Code wurde von einem Tool generiert.
...@@ -91,7 +91,7 @@ namespace InnoLabProjektDektopApp { ...@@ -91,7 +91,7 @@ namespace InnoLabProjektDektopApp {
#line hidden #line hidden
#line 175 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" #line 179 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.CheckBox SocialMediaCheckBox; internal System.Windows.Controls.CheckBox SocialMediaCheckBox;
...@@ -99,7 +99,7 @@ namespace InnoLabProjektDektopApp { ...@@ -99,7 +99,7 @@ namespace InnoLabProjektDektopApp {
#line hidden #line hidden
#line 191 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" #line 195 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.CheckBox ShoppingCheckBox; internal System.Windows.Controls.CheckBox ShoppingCheckBox;
...@@ -107,7 +107,7 @@ namespace InnoLabProjektDektopApp { ...@@ -107,7 +107,7 @@ namespace InnoLabProjektDektopApp {
#line hidden #line hidden
#line 207 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" #line 211 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.CheckBox GamesCheckBox; internal System.Windows.Controls.CheckBox GamesCheckBox;
...@@ -115,7 +115,7 @@ namespace InnoLabProjektDektopApp { ...@@ -115,7 +115,7 @@ namespace InnoLabProjektDektopApp {
#line hidden #line hidden
#line 224 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" #line 228 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.CheckBox PornCheckBox; internal System.Windows.Controls.CheckBox PornCheckBox;
...@@ -123,7 +123,7 @@ namespace InnoLabProjektDektopApp { ...@@ -123,7 +123,7 @@ namespace InnoLabProjektDektopApp {
#line hidden #line hidden
#line 240 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" #line 244 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.CheckBox OtherWebsitesCheckBox; internal System.Windows.Controls.CheckBox OtherWebsitesCheckBox;
...@@ -131,7 +131,7 @@ namespace InnoLabProjektDektopApp { ...@@ -131,7 +131,7 @@ namespace InnoLabProjektDektopApp {
#line hidden #line hidden
#line 256 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" #line 260 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.CheckBox OtherProgramsCheckBox; internal System.Windows.Controls.CheckBox OtherProgramsCheckBox;
...@@ -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);
...@@ -216,7 +216,7 @@ namespace InnoLabProjektDektopApp { ...@@ -216,7 +216,7 @@ namespace InnoLabProjektDektopApp {
return; return;
case 9: case 9:
#line 173 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" #line 177 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml"
((System.Windows.Controls.Grid)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Grid_MouseDown); ((System.Windows.Controls.Grid)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Grid_MouseDown);
#line default #line default
...@@ -227,7 +227,7 @@ namespace InnoLabProjektDektopApp { ...@@ -227,7 +227,7 @@ namespace InnoLabProjektDektopApp {
return; return;
case 11: case 11:
#line 178 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" #line 182 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToDistractionList); ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToDistractionList);
#line default #line default
...@@ -235,7 +235,7 @@ namespace InnoLabProjektDektopApp { ...@@ -235,7 +235,7 @@ namespace InnoLabProjektDektopApp {
return; return;
case 12: case 12:
#line 181 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" #line 185 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToDistractionList); ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToDistractionList);
#line default #line default
...@@ -243,7 +243,7 @@ namespace InnoLabProjektDektopApp { ...@@ -243,7 +243,7 @@ namespace InnoLabProjektDektopApp {
return; return;
case 13: case 13:
#line 189 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" #line 193 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml"
((System.Windows.Controls.Grid)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Grid_MouseDown); ((System.Windows.Controls.Grid)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Grid_MouseDown);
#line default #line default
...@@ -254,7 +254,7 @@ namespace InnoLabProjektDektopApp { ...@@ -254,7 +254,7 @@ namespace InnoLabProjektDektopApp {
return; return;
case 15: case 15:
#line 194 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" #line 198 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToDistractionList); ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToDistractionList);
#line default #line default
...@@ -262,7 +262,7 @@ namespace InnoLabProjektDektopApp { ...@@ -262,7 +262,7 @@ namespace InnoLabProjektDektopApp {
return; return;
case 16: case 16:
#line 197 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" #line 201 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToDistractionList); ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToDistractionList);
#line default #line default
...@@ -270,7 +270,7 @@ namespace InnoLabProjektDektopApp { ...@@ -270,7 +270,7 @@ namespace InnoLabProjektDektopApp {
return; return;
case 17: case 17:
#line 205 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" #line 209 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml"
((System.Windows.Controls.Grid)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Grid_MouseDown); ((System.Windows.Controls.Grid)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Grid_MouseDown);
#line default #line default
...@@ -281,7 +281,7 @@ namespace InnoLabProjektDektopApp { ...@@ -281,7 +281,7 @@ namespace InnoLabProjektDektopApp {
return; return;
case 19: case 19:
#line 210 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" #line 214 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToDistractionList); ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToDistractionList);
#line default #line default
...@@ -289,7 +289,7 @@ namespace InnoLabProjektDektopApp { ...@@ -289,7 +289,7 @@ namespace InnoLabProjektDektopApp {
return; return;
case 20: case 20:
#line 213 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" #line 217 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToDistractionList); ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToDistractionList);
#line default #line default
...@@ -297,7 +297,7 @@ namespace InnoLabProjektDektopApp { ...@@ -297,7 +297,7 @@ namespace InnoLabProjektDektopApp {
return; return;
case 21: case 21:
#line 222 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" #line 226 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml"
((System.Windows.Controls.Grid)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Grid_MouseDown); ((System.Windows.Controls.Grid)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Grid_MouseDown);
#line default #line default
...@@ -308,7 +308,7 @@ namespace InnoLabProjektDektopApp { ...@@ -308,7 +308,7 @@ namespace InnoLabProjektDektopApp {
return; return;
case 23: case 23:
#line 227 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" #line 231 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToDistractionList); ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToDistractionList);
#line default #line default
...@@ -316,7 +316,7 @@ namespace InnoLabProjektDektopApp { ...@@ -316,7 +316,7 @@ namespace InnoLabProjektDektopApp {
return; return;
case 24: case 24:
#line 230 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" #line 234 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToDistractionList); ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToDistractionList);
#line default #line default
...@@ -324,7 +324,7 @@ namespace InnoLabProjektDektopApp { ...@@ -324,7 +324,7 @@ namespace InnoLabProjektDektopApp {
return; return;
case 25: case 25:
#line 238 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" #line 242 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml"
((System.Windows.Controls.Grid)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Grid_MouseDown); ((System.Windows.Controls.Grid)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Grid_MouseDown);
#line default #line default
...@@ -335,7 +335,7 @@ namespace InnoLabProjektDektopApp { ...@@ -335,7 +335,7 @@ namespace InnoLabProjektDektopApp {
return; return;
case 27: case 27:
#line 243 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" #line 247 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToDistractionList); ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToDistractionList);
#line default #line default
...@@ -343,7 +343,7 @@ namespace InnoLabProjektDektopApp { ...@@ -343,7 +343,7 @@ namespace InnoLabProjektDektopApp {
return; return;
case 28: case 28:
#line 246 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" #line 250 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToDistractionList); ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToDistractionList);
#line default #line default
...@@ -351,7 +351,7 @@ namespace InnoLabProjektDektopApp { ...@@ -351,7 +351,7 @@ namespace InnoLabProjektDektopApp {
return; return;
case 29: case 29:
#line 254 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" #line 258 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml"
((System.Windows.Controls.Grid)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Grid_MouseDown); ((System.Windows.Controls.Grid)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Grid_MouseDown);
#line default #line default
...@@ -362,7 +362,7 @@ namespace InnoLabProjektDektopApp { ...@@ -362,7 +362,7 @@ namespace InnoLabProjektDektopApp {
return; return;
case 31: case 31:
#line 259 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" #line 263 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToDistractionList); ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToDistractionList);
#line default #line default
...@@ -370,9 +370,25 @@ namespace InnoLabProjektDektopApp { ...@@ -370,9 +370,25 @@ namespace InnoLabProjektDektopApp {
return; return;
case 32: case 32:
#line 262 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" #line 266 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToDistractionList); ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToDistractionList);
#line default
#line hidden
return;
case 33:
#line 279 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.PreviousPage_Click);
#line default
#line hidden
return;
case 34:
#line 296 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NextPage_Click);
#line default #line default
#line hidden #line hidden
return; return;
... ...
......
#pragma checksum "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "1F10F7816B98A4217B59F374663F778C8C3E559E" #pragma checksum "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "DE2E82B44F673472EBD9DB3E28D3A19897D57839"
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// <auto-generated> // <auto-generated>
// Dieser Code wurde von einem Tool generiert. // Dieser Code wurde von einem Tool generiert.
...@@ -224,6 +224,22 @@ namespace InnoLabProjektDektopApp { ...@@ -224,6 +224,22 @@ namespace InnoLabProjektDektopApp {
#line 172 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" #line 172 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToOverviewButton_Click); ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToOverviewButton_Click);
#line default
#line hidden
return;
case 14:
#line 179 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.PreviousPage_Click);
#line default
#line hidden
return;
case 15:
#line 197 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NextPage_Click);
#line default #line default
#line hidden #line hidden
return; return;
... ...
......
#pragma checksum "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "1F10F7816B98A4217B59F374663F778C8C3E559E" #pragma checksum "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "DE2E82B44F673472EBD9DB3E28D3A19897D57839"
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// <auto-generated> // <auto-generated>
// Dieser Code wurde von einem Tool generiert. // Dieser Code wurde von einem Tool generiert.
...@@ -224,6 +224,22 @@ namespace InnoLabProjektDektopApp { ...@@ -224,6 +224,22 @@ namespace InnoLabProjektDektopApp {
#line 172 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" #line 172 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToOverviewButton_Click); ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToOverviewButton_Click);
#line default
#line hidden
return;
case 14:
#line 179 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.PreviousPage_Click);
#line default
#line hidden
return;
case 15:
#line 197 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NextPage_Click);
#line default #line default
#line hidden #line hidden
return; return;
... ...
......
#pragma checksum "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "1EFCB88867CB021DF28247EC6D36F821FD4A0742" #pragma checksum "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "578785F3B099EF7D5C5C149570A3D3F8CC547590"
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// <auto-generated> // <auto-generated>
// Dieser Code wurde von einem Tool generiert. // Dieser Code wurde von einem Tool generiert.
...@@ -198,6 +198,14 @@ namespace InnoLabProjektDektopApp { ...@@ -198,6 +198,14 @@ namespace InnoLabProjektDektopApp {
#line 188 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" #line 188 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.StartButton_Click); ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.StartButton_Click);
#line default
#line hidden
return;
case 13:
#line 197 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.PreviousPage_Click);
#line default #line default
#line hidden #line hidden
return; return;
... ...
......
#pragma checksum "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "1EFCB88867CB021DF28247EC6D36F821FD4A0742" #pragma checksum "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "578785F3B099EF7D5C5C149570A3D3F8CC547590"
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// <auto-generated> // <auto-generated>
// Dieser Code wurde von einem Tool generiert. // Dieser Code wurde von einem Tool generiert.
...@@ -198,6 +198,14 @@ namespace InnoLabProjektDektopApp { ...@@ -198,6 +198,14 @@ namespace InnoLabProjektDektopApp {
#line 188 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" #line 188 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.StartButton_Click); ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.StartButton_Click);
#line default
#line hidden
return;
case 13:
#line 197 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.PreviousPage_Click);
#line default #line default
#line hidden #line hidden
return; return;
... ...
......
No preview for this file type
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment