26 lines
1.1 KiB
XML
26 lines
1.1 KiB
XML
<ContentDialog
|
|
x:Class="Wino.Dialogs.WinoMessageDialog"
|
|
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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
Title="{x:Bind DialogTitle, Mode=OneWay}"
|
|
xmlns:domain="using:Wino.Core.Domain"
|
|
Style="{StaticResource WinoDialogStyle}"
|
|
HorizontalContentAlignment="Stretch"
|
|
VerticalContentAlignment="Stretch"
|
|
CloseButtonText="{x:Bind domain:Translator.Buttons_Close}"
|
|
DefaultButton="Close"
|
|
Closed="DialogClosed"
|
|
mc:Ignorable="d">
|
|
|
|
<ContentDialog.Resources>
|
|
<x:Double x:Key="ContentDialogMinWidth">250</x:Double>
|
|
<x:Double x:Key="ContentDialogMaxWidth">900</x:Double>
|
|
<x:Double x:Key="ContentDialogMinHeight">200</x:Double>
|
|
<x:Double x:Key="ContentDialogMaxHeight">756</x:Double>
|
|
</ContentDialog.Resources>
|
|
|
|
<TextBlock Text="{x:Bind Message, Mode=OneWay}" TextWrapping="Wrap" />
|
|
</ContentDialog>
|