MainPage.xaml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <Page x:Class="MyTests.Pages.MainPage"
  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:MyTests.Pages"
  7. mc:Ignorable="d"
  8. d:DesignHeight="425" d:DesignWidth="800">
  9. <Grid Background="{StaticResource color1}">
  10. <Grid.ColumnDefinitions>
  11. <ColumnDefinition Width="124"/>
  12. <ColumnDefinition/>
  13. </Grid.ColumnDefinitions>
  14. <StackPanel Background="{StaticResource color2}"
  15. Grid.Column="0">
  16. <Button Name="CreateTest"
  17. Height="30"
  18. Margin="5"
  19. Content="Создать тест"
  20. Click="CreateTestClick">
  21. </Button>
  22. <Button Height="30"
  23. Margin="5"
  24. Content="Тесты"
  25. Click="TestsCatalogClick">
  26. </Button>
  27. <Button Height="30"
  28. Margin="5"
  29. Content="Профиль"
  30. Click="ProfileClick">
  31. </Button>
  32. </StackPanel>
  33. <Frame Name="MainContentFrame"
  34. Grid.Column="1"
  35. NavigationUIVisibility="Hidden">
  36. </Frame>
  37. </Grid>
  38. </Page>