FinalPresenceLexa/Presence/AttendanceWindow.axaml
2025-04-28 11:51:01 +03:00

36 lines
1.3 KiB
XML

<Window xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="Presence.AttendanceWindow"
x:CompileBindings="False"
Title="Посещаемость" Width="800" Height="550">
<StackPanel Margin="20" Spacing="10">
<!-- ПАНЕЛЬ ФИЛЬТРОВ -->
<StackPanel Orientation="Horizontal" Spacing="10">
<!-- Выбор группы -->
<ComboBox Name="GroupComboBox" Width="200">
<ComboBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding Name}" />
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>
<!-- Выбор даты -->
<DatePicker Name="DatePicker" />
<!-- Кнопка применить фильтр -->
<Button Name="BtnFilter" Content="Показать" Width="100"/>
</StackPanel>
<!-- Список посещаемости -->
<ListBox Name="AttendanceList" Height="420">
<ListBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding}" />
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</StackPanel>
</Window>