123456789101112131415161718192021222324 |
- <Window x:Class="MyMoviesWPF.MainWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:local="clr-namespace:MyMoviesWPF"
- mc:Ignorable="d"
- Title="MainWindow" Height="900" Width="1600">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="100*"/>
- <ColumnDefinition Width="1200"/>
- <ColumnDefinition Width="100*"/>
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition Height="48*"/>
- <RowDefinition Height="383*"/>
- <RowDefinition Height="11*"/>
- </Grid.RowDefinitions>
- <Frame Grid.Column="1" Content="{Binding CurrentPage}" Grid.Row="1" />
- <Button Grid.Column="2" Content="{Binding Cart}" HorizontalAlignment="Center" VerticalAlignment="Bottom" Command="{Binding OpenCart}"/>
- </Grid>
- </Window>
|