Catalog.xaml 864 B

12345678910111213141516
  1. <UserControl x:Class="MyMoviesWPF.MVVM.View.Catalog"
  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="1" Grid.Row="1" Orientation="Horizontal" HorizontalAlignment="Center">
  11. <Button Height="150" Width="100" VerticalAlignment="Center" Cursor="Hand"/>
  12. <DataGrid HorizontalAlignment="Center"/>
  13. <Button Height="150" Width="100"/>
  14. </StackPanel>
  15. </Grid>
  16. </UserControl>