RegAuth.xaml 1.2 KB

12345678910111213141516171819202122232425
  1. <Window x:Class="MyTests.RegAuth"
  2. ResizeMode="NoResize" WindowStyle="SingleBorderWindow"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  7. xmlns:local="clr-namespace:MyTests"
  8. mc:Ignorable="d"
  9. Title="RegAuth" Height="475" Width="475">
  10. <Grid>
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="50*"/>
  13. <RowDefinition Height="25*"/>
  14. </Grid.RowDefinitions>
  15. <StackPanel Grid.Row="1" Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  16. <Button Content="Регистрация" Width="140" Height="75" FontSize="20" Margin="40, 0, 40, 0" Click="WindowRegistration"></Button>
  17. <Button Content="Вход" Width="140" Height="75" FontSize="25" Margin="40, 0, 40, 0" Click="WindowEntry"></Button>
  18. </StackPanel>
  19. <Frame
  20. Name="MainFrame"
  21. NavigationUIVisibility="Hidden"
  22. Grid.Row="0">
  23. </Frame>
  24. </Grid>
  25. </Window>