<Window x:Class="CinemaApp.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Кинотеатр" Height="500" Width="800">
<Grid Margin="10">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<StackPanel Orientation="Horizontal" Margin="0,0,0,10">
<TextBox x:Name="SearchBox" Width="200" Margin="0,0,10,0" TextChanged="Filter_Changed" />
<ComboBox x:Name="GenreFilter" Width="150" SelectionChanged="Filter_Changed">
<ComboBoxItem Content="Все" IsSelected="True"/>
<ComboBoxItem Content="Боевик"/>
<ComboBoxItem Content="Комедия"/>
<ComboBoxItem Content="Драма"/>
<ComboBoxItem Content="Фантастика"/>
<ComboBoxItem Content="Ужасы"/>
</ComboBox>
</StackPanel>
<ListBox x:Name="MoviesList" Grid.Row="1" DisplayMemberPath="Title" />
<StackPanel Grid.Row="2" Orientation="Horizontal" Margin="0,10,0,0">
<Button Content="Выбрать фильм" Width="120" Margin="0,0,10,0" Click="SelectMovie_Click"/>
<Button Content="Добавить фильм" Width="120" Margin="0,0,10,0" Click="AddMovie_Click"/>
<Button Content="Удалить фильм" Width="120" Click="DeleteMovie_Click"/>
<Label x:Name="MoviesCountLabel" Margin="20,0,0,0" VerticalAlignment="Center"/>
</StackPanel>
</Grid>
</Window>