Skip to content
Snippets Groups Projects

updated burger menu style, added burger menu to overview

6 files
+ 174
13
Compare changes
  • Side-by-side
  • Inline

Files

@@ -10,19 +10,24 @@
Background="{StaticResource BACKGROUND_PRIMARY_BRUSH}">
<ScrollViewer>
<Grid VerticalAlignment="Center">
<StackPanel Margin="20,0,20,20">
<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" />
Margin="50,10,0,10" />
<!-- Profiles and Add Button Section -->
<Border Background="{StaticResource BACKGROUND_SECONDARY_BRUSH}" CornerRadius="10" Padding="15" >
<StackPanel Orientation="Vertical">
<StackPanel Orientation="Vertical" >
<TextBlock Style="{StaticResource Header2}"
Text="Want to customize this profile?"
HorizontalAlignment="Left" />
@@ -289,6 +294,45 @@ TextChanged="FocusTopicInputBox_TextChanged" />
</StackPanel>
</Grid>
<ToggleButton x:Name="BurgerMenuButton"
Click="BurgerMenuButton_Click"
Margin="10,0,0,0"
VerticalAlignment="Top"
HorizontalAlignment="Left"
Style="{StaticResource BurgerMenuButtonStyle}">
<TextBlock Text="☰" FontSize="30" HorizontalAlignment="Center" VerticalAlignment="Center"/>
</ToggleButton>
<StackPanel x:Name="MenuPanel"
Visibility="Collapsed"
VerticalAlignment="Top"
HorizontalAlignment="Left"
Margin="10,80,0,0">
<Border Style="{StaticResource RoundedButtonBorder2}" MouseDown="Button_Click_2">
<TextBlock Text="Distractions" Style="{StaticResource ButtonTextStyle}" />
</Border>
<Border Style="{StaticResource RoundedButtonBorder2}" MouseDown="Button_Click_3">
<TextBlock Text="ProgrammsList" Style="{StaticResource ButtonTextStyle}" />
</Border>
<Border Style="{StaticResource RoundedButtonBorder2}" MouseDown="Button_Click_4">
<TextBlock Text="Overview" Style="{StaticResource ButtonTextStyle}" />
</Border>
<Border Style="{StaticResource RoundedButtonBorder2}" MouseDown="Button_Click_6">
<TextBlock Text="Abonnement" Style="{StaticResource ButtonTextStyle}" />
</Border>
<Border Style="{StaticResource RoundedButtonBorder2}" MouseDown="Button_Click_7">
<TextBlock Text="Contract" Style="{StaticResource ButtonTextStyle}" />
</Border>
<Border Style="{StaticResource RoundedButtonBorder2}" MouseDown="Button_Click_8">
<TextBlock Text="Settings" Style="{StaticResource ButtonTextStyle}" />
</Border>
</StackPanel>
</Grid>
</ScrollViewer>
</Page>
Loading