AdministrationPage.xaml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <Page x:Class="RaspisKusach.Pages.AdministrationPage"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:RaspisKusach.Pages"
  7. mc:Ignorable="d"
  8. d:DesignHeight="367"
  9. d:DesignWidth="792"
  10. Title="Администратор">
  11. <Grid Background="White">
  12. <Grid.RowDefinitions>
  13. <RowDefinition Height="35"/>
  14. <RowDefinition/>
  15. <RowDefinition/>
  16. </Grid.RowDefinitions>
  17. <Label Content="Администрирование"
  18. HorizontalContentAlignment="Center"
  19. FontSize="20"
  20. FontWeight="SemiBold"/>
  21. <StackPanel Grid.Row="1"
  22. Orientation="Horizontal"
  23. HorizontalAlignment="Center">
  24. <Button Width="120"
  25. Height="40"
  26. Margin="10,0,10,0">
  27. <StackPanel Orientation="Horizontal">
  28. <Image Width="15" Height="15" Source="/RaspisKusach;component/Resources/Train.png"></Image>
  29. <Label>Маршруты</Label>
  30. </StackPanel>
  31. </Button>
  32. <Button Width="120"
  33. Height="40"
  34. Content="Станции"
  35. Margin="10,0,10,0">
  36. </Button>
  37. <Button Width="120"
  38. Height="40"
  39. Content="Поезда"
  40. Margin="10,0,10,0">
  41. </Button>
  42. </StackPanel>
  43. <StackPanel Grid.Row="2"
  44. Orientation="Horizontal"
  45. HorizontalAlignment="Center">
  46. <Button Width="120"
  47. Height="40"
  48. Content="Профиль"
  49. Margin="10,0,10,0">
  50. </Button>
  51. <Button Width="120"
  52. Height="40"
  53. Content="Профиль"
  54. Margin="10,0,10,0">
  55. </Button>
  56. </StackPanel>
  57. </Grid>
  58. </Page>