UserView.xaml 1.4 KB

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