34 lines
997 B
XML
34 lines
997 B
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="240" d:DesignHeight="120"
|
|
MinWidth="240" MinHeight="120"
|
|
MaxWidth="240" MaxHeight="120"
|
|
x:Class="LibationAvalonia.Dialogs.Login.ApprovalNeededDialog"
|
|
Title="Approval Alert Detected"
|
|
Icon="/Assets/libation.ico">
|
|
|
|
<Grid RowDefinitions="Auto,Auto,*">
|
|
|
|
<TextBlock
|
|
Grid.Row="0"
|
|
Margin="10"
|
|
TextWrapping="Wrap"
|
|
Text="Amazon is sending you an email."/>
|
|
|
|
<TextBlock
|
|
Grid.Row="1" Margin="10,0,10,0"
|
|
TextWrapping="Wrap"
|
|
Text="Please press this button after you've approved the notification."/>
|
|
|
|
<Button
|
|
Grid.Row="2"
|
|
Margin="10"
|
|
VerticalAlignment="Bottom"
|
|
Padding="30,3,30,3"
|
|
Content="Approve"
|
|
Click="Approve_Click" />
|
|
</Grid>
|
|
</Window>
|