nice features

This commit is contained in:
2020-02-18 20:08:06 +01:00
parent 2467cad2a1
commit b910d3a1e6
6 changed files with 64 additions and 25 deletions

View File

@@ -3,15 +3,19 @@
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:ui="http://schemas.modernwpf.com/2019"
Title="Save your work?"
x:Name="LayoutRoot"
Title="Delete your work?"
CloseButtonText="Cancel"
DefaultButton="Close"
IsShadowEnabled="True"
PrimaryButtonText="Yes"
SecondaryButtonText="No">
<StackPanel HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
<ui:SimpleStackPanel
HorizontalAlignment="Stretch"
VerticalAlignment="Stretch"
Spacing="10">
<!-- Content body -->
<TextBlock Text="Lorem ipsum dolor sit amet, adipisicing elit." TextWrapping="Wrap" />
<CheckBox Content="Upload your content to the cloud." />
</StackPanel>
<TextBlock Text="Delete message?" />
<TextBlock TextWrapping="Wrap"><Run Text="&quot;" /><Run Text="{Binding Message, ElementName=LayoutRoot}" /><Run Text="&quot;" /></TextBlock>
</ui:SimpleStackPanel>
</ui:ContentDialog>