47 lines
3.5 KiB
XML
47 lines
3.5 KiB
XML
<Window xmlns="https://github.com/avaloniaui"
|
|
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"
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
|
x:Class="kursovaya.AdminWindow"
|
|
x:CompileBindings="False"
|
|
Title="AdminWindow">
|
|
<Border Background="Bisque">
|
|
<DockPanel>
|
|
<StackPanel DockPanel.Dock="Top" Orientation="Horizontal" Background="LightBlue" Height="30">
|
|
<Button DockPanel.Dock="Left" Content="Назад" Click="ButtonBack_OnClick" Width="100" HorizontalAlignment="Left" Foreground="Black" Background="LightGray"/>
|
|
<ComboBox x:Name="GroupComboBox" HorizontalAlignment="Center"/>
|
|
<ComboBox x:Name="DisciplineComboBox" HorizontalAlignment="Center"/>
|
|
<ComboBox x:Name="TeacherComboBox" HorizontalAlignment="Center"/>
|
|
<!-- <Button Content="Просмотр аттестации" Foreground="Black"/> -->
|
|
</StackPanel>
|
|
<Grid DockPanel.Dock="Top" ColumnDefinitions="3*,1*,3*" Background="LightGray" Height="35">
|
|
<TextBlock Grid.Column="0" Text="Дисциплина" VerticalAlignment="Center" Margin="5" Foreground="Black" FontWeight="Bold"/>
|
|
<TextBlock Grid.Column="1" Text="Группа" VerticalAlignment="Center" Margin="5" Foreground="Black" FontWeight="Bold"/>
|
|
<TextBlock Grid.Column="2" Text="Преподаватель" VerticalAlignment="Center" Margin="5" Foreground="Black" FontWeight="Bold"/>
|
|
</Grid>
|
|
<ScrollViewer>
|
|
<ItemsControl x:Name="FlatGrid" ItemsSource="{Binding DisciplineGroupTeachers}">
|
|
<ItemsControl.ItemTemplate>
|
|
<DataTemplate>
|
|
<Grid ColumnDefinitions="3*,1*,3*" Margin="2" Background="LightGray" Height="40">
|
|
<Border Grid.Column="0" BorderBrush="Black" BorderThickness="0.5">
|
|
<TextBlock Text="{Binding DisciplineName}" VerticalAlignment="Center" Margin="10,0" Foreground="Black"/>
|
|
</Border>
|
|
|
|
<Border Grid.Column="1" BorderBrush="Black" BorderThickness="0.5">
|
|
<TextBlock Text="{Binding GroupId}" VerticalAlignment="Center" HorizontalAlignment="Center" Foreground="Black"/>
|
|
</Border>
|
|
|
|
<Border Grid.Column="2" BorderBrush="Black" BorderThickness="0.5">
|
|
<TextBlock Text="{Binding TeacherFio}" VerticalAlignment="Center" Margin="10,0" Foreground="Black"/>
|
|
</Border>
|
|
</Grid>
|
|
</DataTemplate>
|
|
</ItemsControl.ItemTemplate>
|
|
</ItemsControl>
|
|
</ScrollViewer>
|
|
</DockPanel>
|
|
</Border>
|
|
</Window>
|