2024-12-13 07:21:14 +00:00
|
|
|
|
<UserControl 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"
|
2024-12-22 12:37:22 +00:00
|
|
|
|
xmlns:vm="using:Presence.Desktop.ViewModels"
|
2024-12-13 07:21:14 +00:00
|
|
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
2024-12-22 12:37:22 +00:00
|
|
|
|
x:Class="Presence.Desktop.Views.PresenceView"
|
|
|
|
|
x:DataType="vm:PresenceViewModel">
|
|
|
|
|
|
2024-12-23 11:56:27 +00:00
|
|
|
|
<Grid RowDefinitions="Auto, Auto, *, Auto" Margin="10" Background="Aquamarine">
|
2024-12-22 12:37:22 +00:00
|
|
|
|
<StackPanel Orientation="Horizontal" Grid.Row="0" Spacing="10">
|
|
|
|
|
<!-- Выбор группы -->
|
|
|
|
|
<ComboBox ItemsSource="{Binding Groups}" SelectedItem="{Binding SelectedGroup}" Width="200" PlaceholderText="Выберите группу">
|
|
|
|
|
<ComboBox.ItemTemplate>
|
|
|
|
|
<DataTemplate>
|
|
|
|
|
<TextBlock Text="{Binding Name}" />
|
|
|
|
|
</DataTemplate>
|
|
|
|
|
</ComboBox.ItemTemplate>
|
|
|
|
|
</ComboBox>
|
|
|
|
|
|
|
|
|
|
<!-- Календарь -->
|
|
|
|
|
<Calendar SelectedDate="{Binding SelectedDate}" />
|
|
|
|
|
</StackPanel>
|
|
|
|
|
|
|
|
|
|
<!-- Таблица с посещаемостью -->
|
|
|
|
|
<DataGrid Grid.Row="2" AutoGenerateColumns="False" ItemsSource="{Binding AttendanceRecords}" CanUserSortColumns="True">
|
|
|
|
|
<DataGrid.Columns>
|
2024-12-23 11:56:27 +00:00
|
|
|
|
<DataGridTextColumn Header="Дата" Binding="{Binding Date}" Foreground="Black"/>
|
2024-12-22 12:37:22 +00:00
|
|
|
|
<DataGridTextColumn Header="Номер урока" Binding="{Binding ClassNumber}" />
|
|
|
|
|
<DataGridTextColumn Header="ФИО" Binding="{Binding User.Name}" />
|
|
|
|
|
|
|
|
|
|
<!-- Тип посещаемости -->
|
|
|
|
|
<DataGridCheckBoxColumn Header="Тип посещаемости" Binding="{Binding IsAttendence, Mode=TwoWay}" />
|
|
|
|
|
|
|
|
|
|
</DataGrid.Columns>
|
|
|
|
|
</DataGrid>
|
|
|
|
|
</Grid>
|
2024-12-13 07:21:14 +00:00
|
|
|
|
</UserControl>
|