DefaultPivotControl.xaml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. <ColumnDefinition Width="*"/>
  15. </Grid.ColumnDefinitions>
  16. <RadioButton
  17. x:Name="RouteSelectRadioButton"
  18. HorizontalAlignment="Stretch"
  19. Style="{StaticResource MainNavigationButtonStyle}"
  20. Content="{StaticResource SymbolRouteSelect}"
  21. Checked="RouteSelectRadioButton_Checked"
  22. Height="50"
  23. MinWidth="0" />
  24. <RadioButton
  25. HorizontalAlignment="Stretch"
  26. x:Name="MapRadioButton"
  27. Style="{StaticResource MainNavigationButtonStyle}"
  28. Content="{StaticResource SymbolGlobe}"
  29. Grid.Column="1"
  30. Checked="MapRadioButton_Checked"
  31. Height="50"
  32. MinWidth="0" />
  33. <RadioButton
  34. HorizontalAlignment="Stretch"
  35. x:Name="SettingsRadioButton"
  36. Style="{StaticResource MainNavigationButtonStyle}"
  37. Content="{StaticResource SymbolSettings}"
  38. Grid.Column="2"
  39. Checked="SettingsRadioButton_Checked"
  40. Height="50"
  41. MinWidth="0" />
  42. <RadioButton
  43. HorizontalAlignment="Stretch"
  44. x:Name="HelpRadioButton"
  45. Style="{StaticResource MainNavigationButtonStyle}"
  46. Content="{StaticResource SymbolHelp}"
  47. Grid.Column="3"
  48. Checked="HelpRadioButton_Checked"
  49. Height="50"
  50. MinWidth="0" />
  51. </Grid>
  52. </UserControl>