57 lines
2.2 KiB
XML
57 lines
2.2 KiB
XML
<Window
|
|
SizeToContent="Height"
|
|
Title="WARNING"
|
|
Width="500"
|
|
WindowStartupLocation="CenterOwner"
|
|
x:Class="Project.View.EntryErrorPopUp"
|
|
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="Please fill out all the boxes except note and/or URL." />
|
|
<TextBlock Text="Your password should be at least 6 characters long." />
|
|
<TextBlock Text="I recommend a password length of 12 characters or more." />
|
|
|
|
<Button
|
|
Click="EntryError_Click"
|
|
Content="OK"
|
|
Margin="0,15,0,5" />
|
|
</StackPanel>
|
|
</ScrollViewer>
|
|
</Border>
|
|
</Grid>
|
|
</Window> |