DefaultPivotControl.xaml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <UserControl
  2. x:Class="Breda_Tour.CustomControls.DefaultPivotControl"
  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_Tour.CustomControls"
  6. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  7. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8. mc:Ignorable="d">
  9. <Grid Background="#22000000" Height="52">
  10. <Grid.ColumnDefinitions>
  11. <ColumnDefinition Width="*"/>
  12. <ColumnDefinition Width="*"/>
  13. <ColumnDefinition Width="*"/>
  14. </Grid.ColumnDefinitions>
  15. <RadioButton
  16. x:Name="RouteSelectRadioButton"
  17. HorizontalAlignment="Stretch"
  18. Style="{StaticResource MainNavigationButtonStyle}"
  19. Content="{StaticResource SymbolRouteSelect}"
  20. Checked="RouteSelectRadioButton_Checked"
  21. Height="50"
  22. />
  23. <RadioButton
  24. HorizontalAlignment="Stretch"
  25. x:Name="MapRadioButton"
  26. Style="{StaticResource MainNavigationButtonStyle}"
  27. Content="{StaticResource SymbolGlobe}"
  28. Grid.Column="1"
  29. Checked="MapRadioButton_Checked"
  30. Height="50"/>
  31. <RadioButton
  32. HorizontalAlignment="Stretch"
  33. x:Name="SettingsRadioButton"
  34. Style="{StaticResource MainNavigationButtonStyle}"
  35. Content="{StaticResource SymbolSettings}"
  36. Grid.Column="2"
  37. Checked="SettingsRadioButton_Checked"
  38. Height="50"/>
  39. </Grid>
  40. </UserControl>