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-26 08:03:24 +00:00
|
|
|
|
<DockPanel Margin="10" Background="Aquamarine">
|
|
|
|
|
<StackPanel Orientation="Horizontal" Spacing="10" DockPanel.Dock="Top">
|
2024-12-22 12:37:22 +00:00
|
|
|
|
<!-- Выбор группы -->
|
|
|
|
|
<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>
|
|
|
|
|
|
2024-12-26 08:03:24 +00:00
|
|
|
|
<StackPanel Orientation="Vertical" Spacing="10">
|
2024-12-22 12:37:22 +00:00
|
|
|
|
<!-- Таблица с посещаемостью -->
|
2024-12-26 08:03:24 +00:00
|
|
|
|
<DataGrid AutoGenerateColumns="False" ItemsSource="{Binding AttendanceRecords}" CanUserSortColumns="True"
|
|
|
|
|
SelectionChanged="OnDataGridSelectionChanged">
|
2024-12-22 12:37:22 +00:00
|
|
|
|
<DataGrid.Columns>
|
2024-12-26 08:03:24 +00:00
|
|
|
|
<DataGridTextColumn Header="Дата" Binding="{Binding Date}"/>
|
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>
|
2024-12-26 08:03:24 +00:00
|
|
|
|
<Button Content="Удалить" Margin="0,10,0,0" Command="{Binding DeleteSelectedPresenceCommand}" />
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</DockPanel>
|
2024-12-13 07:21:14 +00:00
|
|
|
|
</UserControl>
|