OrderPage.xaml 1.0 KB

123456789101112131415161718192021222324
  1. <Page x:Class="MyMoviesWPF.MVVM.View.Pages.OrderPage"
  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.Pages"
  7. mc:Ignorable="d"
  8. d:DesignHeight="900" d:DesignWidth="1600"
  9. Title="OrderPage">
  10. <Grid>
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="64*"/>
  13. <RowDefinition Height="11*"/>
  14. </Grid.RowDefinitions>
  15. <Button Content="Продолжить"
  16. HorizontalAlignment="Left" VerticalAlignment="Center"
  17. Grid.Row="1" Grid.Column="1" Height="75" Width="250"/>
  18. <Button Content="Отмена"
  19. HorizontalAlignment="Right" VerticalAlignment="Center"
  20. Grid.Row="1" Grid.Column="1" Height="75" Width="250"/>
  21. </Grid>
  22. </Page>