22 lines
1.4 KiB
XML
22 lines
1.4 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.AddStudent"
|
|
Title="AddStudent">
|
|
<Grid Background="Bisque">
|
|
<Button Content="Назад" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="10" Width="60" Click="ButtonBack_OnClick" Background="LightGray" Foreground="Black"/>
|
|
|
|
<Border Width="200" HorizontalAlignment="Center" VerticalAlignment="Center">
|
|
<StackPanel Spacing="10">
|
|
<TextBlock x:Name="SuccessMessage" Foreground="Green" FontSize="14" Height="40" Width="300" TextWrapping="Wrap" TextAlignment="Center"/>
|
|
<TextBox x:Name="FioTextBox" Watermark="ФИО"/>
|
|
<ComboBox x:Name="GroupsComboBox" HorizontalAlignment="Center" Margin="0, 0, 5, 0"/>
|
|
<Button Click="ButtonAdd_OnClick" Foreground="Black" Background="LightGray" Content="Добавить"/>
|
|
<TextBlock x:Name="ErrorMessage" Foreground="Red" FontSize="14" Height="40" Width="300" TextWrapping="Wrap" TextAlignment="Center"/>
|
|
</StackPanel>
|
|
</Border>
|
|
</Grid>
|
|
</Window>
|