Загрузка данных


<Window x:Class="CinemaApp.SessionWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="Сеансы" Height="400" Width="400">
    <Grid Margin="10">
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto"/>
            <RowDefinition Height="*"/>
            <RowDefinition Height="Auto"/>
        </Grid.RowDefinitions>

        <TextBlock x:Name="MovieInfoBlock" TextWrapping="Wrap" Margin="0,0,0,10" FontWeight="Bold"/>
        
        <ListBox x:Name="SessionsList" Grid.Row="1" DisplayMemberPath="DisplayInfo"/>

        <StackPanel Grid.Row="2" Orientation="Horizontal" HorizontalAlignment="Right" Margin="0,10,0,0">
            <Button Content="Забронировать" Width="100" Margin="0,0,10,0" Click="Book_Click"/>
            <Button Content="Закрыть" Width="80" Click="Close_Click"/>
        </StackPanel>
    </Grid>
</Window>