UserView.xaml 1.2 KB

1234567891011121314151617181920
  1. <UserControl x:Class="MyMoviesWPF.MVVM.View.UserView"
  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:MyMoviesWPF.MVVM.View"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800">
  9. <Grid>
  10. <StackPanel Grid.Column="2" Margin="0,10,0,10" Orientation="Vertical" HorizontalAlignment="Center" Width="350">
  11. <StackPanel Height="35" Orientation="Horizontal">
  12. <Button Width="175" Content="Регистрация"/>
  13. <Button Width="175" Content="Вход"/>
  14. </StackPanel>
  15. <StackPanel Height="35" Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Bottom">
  16. <Button Style="{DynamicResource MaterialDesignRaisedSecondaryDarkButton}" Width="175" Content="Корзина" Cursor="Hand" />
  17. </StackPanel>
  18. </StackPanel>
  19. </Grid>
  20. </UserControl>