MainPage.xaml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. Visibility="Collapsed">
  22. </Button>
  23. <Button Height="30"
  24. Margin="5"
  25. Content="Тесты"
  26. Click="TestsCatalogClick">
  27. </Button>
  28. <Button Height="30"
  29. Margin="5"
  30. Content="Профиль"
  31. Click="ProfileClick">
  32. </Button>
  33. </StackPanel>
  34. <Frame Name="MainContentFrame"
  35. Grid.Column="1"
  36. NavigationUIVisibility="Hidden">
  37. </Frame>
  38. </Grid>
  39. </Page>