FinalPresenceLexa/Presence/StudentsWindow.axaml

9 lines
408 B
Plaintext
Raw Normal View History

2025-04-28 08:51:01 +00:00
<Window xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="Presence.StudentsWindow"
Title="Студенты" Width="600" Height="400">
<StackPanel Margin="20">
<ListBox Name="StudentsList" Height="300" />
<Button Name="BtnRefreshStudents" Content="Обновить" Margin="0,10,0,0"/>
</StackPanel>
</Window>