SettingsPage.xaml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <Page
  2. x:Class="Breda_Tours.SettingsScreen.SettingsPage"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:local="using:Breda_Tours.SettingsScreen"
  6. xmlns:c="using:Breda_Tour.CustomControls"
  7. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  8. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  9. xmlns:data="using:Breda_Tour.Data"
  10. mc:Ignorable="d">
  11. <Grid Background="Transparent">
  12. <Grid.RowDefinitions>
  13. <RowDefinition Height="40"/>
  14. <RowDefinition Height="50"/>
  15. <RowDefinition Height="*" ScrollViewer.VerticalScrollMode="Enabled"/>
  16. </Grid.RowDefinitions>
  17. <c:DefaultTopBar Header="Instellingen" x:Uid="AppSettingstxtSettings"/>
  18. <c:DefaultPivotControl x:Name="DefaultPivot" Grid.Row="1"/>
  19. <ScrollViewer Grid.Row="2" VerticalScrollBarVisibility="Hidden">
  20. <StackPanel Orientation="Vertical" Background="White">
  21. <TextBlock x:Uid="AppSettingsLanguageSettings" Style="{StaticResource SettingsHeaderStyle}" Foreground="{StaticResource BredaToursMainColorBrush}" Text="{StaticResource AppSettingsLanguageSettings}"></TextBlock>
  22. <ListViewItem Name="listViewItemSetupLanguage" Tapped="listViewItemSetupLanguage_Tapped">
  23. <StackPanel Margin="8,0,0,0">
  24. <TextBlock x:Uid="AppSettingstxtSetupLanguage" FontSize="18" Text="Taal instellen" ></TextBlock>
  25. <TextBlock x:Uid="AppSettingstxtLanguageString" Margin="0,-1,0,0" FontSize="12" Text="Nederlands"></TextBlock>
  26. </StackPanel>
  27. </ListViewItem>
  28. <Rectangle Margin="0,15,0,15" Fill="#99000000" Height="1" />
  29. <ListViewItem Name="listViewItemReset" Tapped="listViewItemReset_Tapped">
  30. <StackPanel Margin="8,0,0,0">
  31. <TextBlock x:Uid="AppSettingstxtReset" FontSize="18" Text="Applicatie resetten" Foreground="#ec0000" ></TextBlock>
  32. <TextBlock x:Uid="AppSettingstxtReset" Margin="0,-1,0,0" FontSize="12" Text="Route afsluiten en applicatie naar basis instellingen resetten" Foreground="#ec0000"></TextBlock>
  33. </StackPanel>
  34. </ListViewItem>
  35. </StackPanel>
  36. </ScrollViewer>
  37. </Grid>
  38. </Page>