Files
Wino-Mail/Wino.Mail/Dialogs/NewImapSetupDialog.xaml
Burak Kaan Köse d1d6f12f05 Ground work for Wino Calendar. (#475)
Wino Calendar abstractions.
2024-11-10 23:28:25 +01:00

26 lines
1.0 KiB
XML

<ContentDialog
x:Class="Wino.Dialogs.NewImapSetupDialog"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="using:Wino.Dialogs"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Closed="ImapSetupDialogClosed"
Closing="OnDialogClosing"
DefaultButton="Secondary"
FullSizeDesired="False"
Opened="ImapSetupDialogOpened"
Style="{StaticResource WinoDialogStyle}"
mc:Ignorable="d">
<ContentDialog.Resources>
<Thickness x:Key="ContentDialogPadding">0,0,0,0</Thickness>
<!--<x:Double x:Key="ContentDialogMinWidth">768</x:Double>-->
<x:Double x:Key="ContentDialogMaxWidth">1920</x:Double>
<!--<x:Double x:Key="ContentDialogMinHeight">768</x:Double>
<x:Double x:Key="ContentDialogMaxHeight">2000</x:Double>-->
</ContentDialog.Resources>
<Frame x:Name="ImapFrame" />
</ContentDialog>