59 lines
2.3 KiB
XML
59 lines
2.3 KiB
XML
<Window
|
|
SizeToContent="Height"
|
|
Title="WARNING"
|
|
Width="500"
|
|
WindowStartupLocation="CenterOwner"
|
|
x:Class="Project.View.PopUp"
|
|
xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
|
|
<Window.Styles>
|
|
<Style Selector="TextBlock">
|
|
<Setter Property="HorizontalAlignment" Value="Center" />
|
|
<Setter Property="FontSize" Value="14" />
|
|
<Setter Property="Foreground" Value="Gray" />
|
|
<Setter Property="TextWrapping" Value="Wrap" />
|
|
<Setter Property="Margin" Value="0,5" />
|
|
</Style>
|
|
<Style Selector="Button">
|
|
<Setter Property="Width" Value="120" />
|
|
<Setter Property="Height" Value="40" />
|
|
<Setter Property="CornerRadius" Value="20" />
|
|
<Setter Property="Margin" Value="0,15,0,0" />
|
|
<Setter Property="HorizontalAlignment" Value="Center" />
|
|
<Setter Property="HorizontalContentAlignment" Value="Center" />
|
|
<Setter Property="VerticalContentAlignment" Value="Center" />
|
|
<Setter Property="Background" Value="#4CAF50" />
|
|
<Setter Property="Foreground" Value="White" />
|
|
</Style>
|
|
</Window.Styles>
|
|
|
|
<Grid Background="#F5F5F5">
|
|
<Border
|
|
Background="White"
|
|
BoxShadow="0 4 8 0 #40000000"
|
|
CornerRadius="8"
|
|
Margin="15">
|
|
|
|
<ScrollViewer>
|
|
<StackPanel Margin="20" MaxWidth="450">
|
|
<TextBlock
|
|
FontSize="24"
|
|
FontWeight="Bold"
|
|
Margin="0,0,0,15"
|
|
Text="⚠️ Warning" />
|
|
<TextBlock Text="One or more entries are wrong or missing." />
|
|
<TextBlock Text="All boxes must be filled in." />
|
|
<TextBlock Text="Your username needs to be at least 4 characters." />
|
|
<TextBlock Text="Your password needs to be at least 8 characters." />
|
|
<TextBlock Text="Make sure your e-mail is correct." />
|
|
|
|
<Button
|
|
Click="OkButton_Click"
|
|
Content="OK"
|
|
Margin="0,15,0,5" />
|
|
</StackPanel>
|
|
</ScrollViewer>
|
|
</Border>
|
|
</Grid>
|
|
</Window> |