AdminPage.xaml 1.4 KB

123456789101112131415161718192021222324
  1. <Page x:Class="SneakersSkakunov.AdminPage"
  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:SneakersSkakunov"
  7. mc:Ignorable="d"
  8. d:DesignHeight="720" d:DesignWidth="1080"
  9. Title="AdminPage">
  10. <Grid Background="#f5f5f5">
  11. <TextBlock FontSize="30" HorizontalAlignment="Center" Foreground="#292929" Margin="10" FontWeight="DemiBold">Меню администратора</TextBlock>
  12. <StackPanel Orientation="Horizontal" VerticalAlignment="Bottom" HorizontalAlignment="Center" >
  13. <Border BorderThickness="2" CornerRadius="7" BorderBrush="#292929" Background="#f5f5f5" Width="250" Height="35" Margin="10">
  14. <Button Click="Base" Background="#0000" BorderBrush="#0000" Foreground="#292929" Content="Просмотр основной таблицы" FontSize="16"></Button>
  15. </Border>
  16. <Border BorderThickness="2" CornerRadius="7" BorderBrush="#292929" Background="#f5f5f5" Width="250" Height="35" Margin="10">
  17. <Button Click="DataView" Background="#0000" BorderBrush="#0000" Foreground="#292929" Content="Просмотр данных" FontSize="16"></Button>
  18. </Border>
  19. </StackPanel>
  20. </Grid>
  21. </Page>