|
@@ -0,0 +1,19 @@
|
|
|
+<Window x:Class="Kinomaks.ElementsWindows.TimetableWindow"
|
|
|
+ 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:Kinomaks.ElementsWindows"
|
|
|
+ mc:Ignorable="d"
|
|
|
+ Title="Расписание" Height="900" Width="1600" WindowStartupLocation="CenterScreen" ResizeMode="CanMinimize">
|
|
|
+ <Grid>
|
|
|
+ <Button Name="BackButton" Content="Назад" HorizontalAlignment="Left" Margin="20,17,0,0" VerticalAlignment="Top" Height="39" Width="140" FontSize="25" Click="BackButtonClick"/>
|
|
|
+ <ListBox VerticalAlignment="Top" HorizontalAlignment="Center" Width="1500" Height="300" Margin="0,112,0,0">
|
|
|
+ <ListBox.ItemsPanel>
|
|
|
+ <ItemsPanelTemplate>
|
|
|
+ <VirtualizingStackPanel IsItemsHost="True" Orientation="Horizontal"/>
|
|
|
+ </ItemsPanelTemplate>
|
|
|
+ </ListBox.ItemsPanel>
|
|
|
+ </ListBox>
|
|
|
+ </Grid>
|
|
|
+</Window>
|