UserPage.xaml 1.1 KB

1234567891011121314151617181920
  1. <Page x:Class="Prakticheskaya5_Venediktov.UserPage"
  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:Prakticheskaya5_Venediktov"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="UserPage">
  10. <Grid Background="LightBlue">
  11. <Border Width="500" Margin="15" Background="White" VerticalAlignment="Center" Padding="30" CornerRadius="50">
  12. <StackPanel>
  13. <TextBlock Text="Меню Пользователя" FontSize="30" FontWeight="Bold" Margin="0 0 0 20" HorizontalAlignment="Center"></TextBlock>
  14. <TextBlock Text="Вы ничего не можете" FontSize="20" HorizontalAlignment="Center" Margin="10"></TextBlock>
  15. <Button x:Name="glav" Content="Выйти" Click="glav_Click"></Button>
  16. </StackPanel>
  17. </Border>
  18. </Grid>
  19. </Page>